1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/ui/routes/home_route.dart
2019-04-22 19:16:26 +02:00

12 lines
235 B
Dart

import 'package:flutter/material.dart';
/// Main route of the application
///
/// @author Pierre HUBERT
class HomeRoute extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Text("Home route");
}
}