Google sign in and hourglass improved
This commit is contained in:
@@ -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))))),
|
||||
],
|
||||
))
|
||||
])));
|
||||
|
||||
Reference in New Issue
Block a user