22 lines
611 B
Dart
22 lines
611 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ChatsPage extends StatelessWidget {
|
|
const ChatsPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Icon(Icons.chat_bubble_outline, size: 64, color: Colors.grey),
|
|
SizedBox(height: 16),
|
|
Text('Чаты', style: TextStyle(fontSize: 18)),
|
|
SizedBox(height: 8),
|
|
Text('Функция в разработке', style: TextStyle(color: Colors.grey)),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|