Files
PotatoMessenger/client/lib/widgets/chatFoloders.dart
fegor101 210b59f8ed add main menu interface
- MainMenu
 - ChatItem (Widget)
 - ChatFolder (Widget)
 - ChatFolders (Widget)
 - ColorTheme
2026-04-10 12:43:08 +03:00

25 lines
853 B
Dart
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import 'package:client/widgets/chatFoloder.dart';
import 'package:flutter/material.dart';
class ChatFoloders extends StatelessWidget{
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
children: [
ChatFolder(name: 'Все чаты', icon: Icon(Icons.chat),),
ChatFolder(name: 'Контакты', icon: Icon(Icons.person),),
ChatFolder(name: 'Групы', icon: Icon(Icons.group),),
ChatFolder(name: 'Папка 1'),
ChatFolder(name: 'Папка 2'),
ChatFolder(name: 'Папка 3'),
ChatFolder(name: 'Папка 4'),
ChatFolder(name: 'Папка 5'),
ChatFolder(name: 'Папка 6'),
ChatFolder(name: 'Папка 7'),
],
),
);
}
}