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
650 B

import 'package:flutter/material.dart';
import './authentication/unauthenticated_landing.dart';
void main() {
runApp(const Home());
}
class Home extends StatelessWidget {
const Home({Key? key}) : super(key: key);
static const String _title = 'Envelope';
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: _title,
home: Scaffold(
backgroundColor: Colors.cyan,
body: SafeArea(
child: UnauthenticatedLandingWidget(),
)
)
);
}
}