1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Initial commit

This commit is contained in:
2019-04-21 10:34:27 +02:00
commit c1a667b84b
59 changed files with 1508 additions and 0 deletions

17
lib/ui/login_route.dart Normal file
View File

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
/// Login route
///
/// @author Pierre HUBERT
class LoginRoute extends StatefulWidget {
@override
State<StatefulWidget> createState() => _LoginRouteState();
}
class _LoginRouteState extends State<LoginRoute> {
@override
Widget build(BuildContext context) {
return Text("Hello world");
}
}