Google sign in and hourglass improved

This commit is contained in:
Sewmina
2022-03-24 05:05:18 +05:30
parent 9f976b1e33
commit 2fe29dcbb8
13 changed files with 560 additions and 307 deletions

View File

@@ -55,7 +55,7 @@ class _NewProjectState extends State<NewProject> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text('New Project')),
appBar: AppBar(title: Text('${(editing) ? 'Edit' : 'New'} Project')),
body: Container(
height: MediaQuery.of(context).size.height,
child: Column(mainAxisSize: MainAxisSize.max, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [
@@ -501,7 +501,7 @@ class _NewProject2State extends State<NewProject2> {
onPressed: () {
OnClickAdd();
},
child: Text('Next', style: TextStyle(fontSize: 20))))),
child: Text((editing) ? 'Apply' : 'Add', style: TextStyle(fontSize: 20))))),
],
))
])));