Encrypted messaging app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
629 B

  1. import 'package:flutter/material.dart';
  2. import '/views/main/conversations_list.dart';
  3. void main() {
  4. runApp(const Home());
  5. }
  6. class Home extends StatelessWidget {
  7. const Home({Key? key}) : super(key: key);
  8. static const String _title = 'Envelope';
  9. @override
  10. Widget build(BuildContext context) {
  11. return const MaterialApp(
  12. title: _title,
  13. home: Scaffold(
  14. backgroundColor: Colors.cyan,
  15. body: SafeArea(
  16. child: ConversationsList(),
  17. )
  18. )
  19. );
  20. }
  21. }