Profile View

This commit is contained in:
2021-03-22 16:49:24 +02:00
parent 8f86ec409d
commit 1381647a3d
28 changed files with 645 additions and 154 deletions
+29
View File
@@ -0,0 +1,29 @@
import 'package:flutter/material.dart';
class ItemLogout extends StatelessWidget {
final String title;
const ItemLogout({
Key key,
this.title,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(16),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
title,
style: TextStyle(
fontSize: 18,
color: Color(0xFF56B4FC),
),
)
],
),
);
}
}