Skip to content

Commit

Permalink
Create create_account_page.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
iamEtornam committed Apr 2, 2020
1 parent e1b84e6 commit 8a994f6
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions lib/pages/create_account_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import 'package:flutter/material.dart';

class CreateAccountPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: ListView(
children: <Widget>[
Padding(
padding: const EdgeInsets.only(bottom: 25, left: 24),
child: Text(
'Create Account',
style: Theme.of(context).textTheme.subtitle1,
),
),
Container(
height: MediaQuery.of(context).size.height,
padding: const EdgeInsets.fromLTRB(16, 30, 16, 16),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.vertical(top: Radius.circular(35))),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text('Welcome',style: Theme.of(context).textTheme.subtitle1.copyWith(color: Colors.black,fontWeight: FontWeight.normal),)
],
),
),
],
),
);
}
}

0 comments on commit 8a994f6

Please sign in to comment.