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
@@ -0,0 +1,33 @@
import 'package:flutter/material.dart';
class ItemTitleSetting extends StatelessWidget {
const ItemTitleSetting({
Key key,
this.title,
}) : super(key: key);
final String title;
@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: Colors.black,
),
),
Icon(
Icons.arrow_forward_ios_rounded,
color: Colors.black,
)
],
),
);
}
}