mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-11-03 11:44:18 +00:00
Can sign out of the application
This commit is contained in:
29
lib/ui/tiles/menu_tile.dart
Normal file
29
lib/ui/tiles/menu_tile.dart
Normal file
@@ -0,0 +1,29 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
/// Menu tile
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
class MenuTile extends StatelessWidget {
|
||||
final String title;
|
||||
final GestureTapCallback onTap;
|
||||
|
||||
const MenuTile({@required this.title, this.onTap}) : assert(title != null);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: <Widget>[
|
||||
Divider(),
|
||||
InkWell(
|
||||
onTap: onTap,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Text(title),
|
||||
),
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user