Untitled
unknown
dart
a year ago
2.3 kB
11
Indexable
Never
import 'package:calculator_bmi/constant.dart'; import 'package:flutter/material.dart'; class RegisterPage extends StatefulWidget { const RegisterPage({Key? key}) : super(key: key); @override State<RegisterPage> createState() => _RegisterPageState(); } class _RegisterPageState extends State<RegisterPage> { @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Container( margin: EdgeInsets.all(30), padding: EdgeInsets.all(20), child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ //text Text( 'REGISTER', style: TextStyle( fontSize: 30, fontWeight: FontWeight.bold, ), ), SizedBox( height: 50, ), //email TextField( keyboardType: TextInputType.emailAddress, textAlign: TextAlign.center, onChanged: (value) {}, decoration: kTextFieldDecoration.copyWith( hintText: 'Masukkan email anda', ), ), SizedBox( height: 10, ), //password TextField( obscureText: true, textAlign: TextAlign.center, onChanged: (value) {}, decoration: kTextFieldDecoration.copyWith( hintText: 'Masukkan password', ), ), SizedBox( height: 10, ), //button Material( elevation: 5, color: kBottomContainerColour, borderRadius: BorderRadius.circular(30), child: MaterialButton( minWidth: MediaQuery.of(context).size.width, height: 50, child: Text('Daftar'), onPressed: () {}, ), ), ], ), ), ), ); } }