Fix Auth form

This commit is contained in:
2021-03-21 19:10:13 +02:00
parent 61180a7fe4
commit dd1c8113a5
7 changed files with 188 additions and 6 deletions
+42 -1
View File
@@ -1,8 +1,49 @@
import 'package:flutter/material.dart';
import 'package:flutter_settings_screens/flutter_settings_screens.dart';
class SettingView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container();
return Scaffold(
appBar: AppBar(
centerTitle: false,
backgroundColor: Colors.white,
title: Text(
"Paramètres",
style: TextStyle(
color: Colors.black,
),
),
iconTheme: IconThemeData(
color: Color(0xFF545454), //change your color here
),
),
body: Padding(
padding: const EdgeInsets.all(16.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text(
"Compte",
style: TextStyle(
fontSize: 23,
color: Color(0xFFA7A7A7),
),
),
Padding(
padding: const EdgeInsets.only(top: 8.0, bottom: 8.0),
child: Text(
"Changer le mot de passe",
style: TextStyle(
fontSize: 18,
color: Colors.black,
),
),
),
//Text("Changer le mot de passe")
],
),
),
);
}
}