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

Ready to build presence section

This commit is contained in:
2021-04-22 15:15:40 +02:00
parent 6baf02e258
commit 1f0abe9c2b
6 changed files with 37 additions and 4 deletions

View File

@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
/// Forez presence section
///
/// @author Pierre Hubert
class ForezPresenceSection extends StatefulWidget {
@override
_ForezPresenceSectionState createState() => _ForezPresenceSectionState();
}
class _ForezPresenceSectionState extends State<ForezPresenceSection> {
@override
Widget build(BuildContext context) {
return Container();
}
}