In this flutter tutorial, we will learn to design a modern Signup screen UI or Signup Page in Flutter. We are creating Flutter UI Design which is a part of our Flutter Login App. In this flutter ui tutorial, we will not just design but also we will learn to create a custom theme for TextField.
In our previous tutorials, we already learned how to design Flutter Login Screen UI and Welcome Screen UI.So, In this tutorial, I will explain the Signup Screen design UI.
You can watch recent playlist tutorials and all the related tutorials to this.
Watch Youtube tutorial
- signup_screen.dart
- form_header_widget.dart
- signup_form_widget.dart
- signup_footer_widget.dart
- text_formfield_theme.dart
class SignUpScreen extends StatelessWidget {
const SignUpScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: SingleChildScrollView(
child: Container(
padding: const EdgeInsets.all(tDefaultSize),
child: Column(
children: const [
FormHeaderWidget(
image: tWelcomeScreenImage,
title: tSignUpTitle,
subTitle: tSignUpSubTitle,
imageHeight: 0.15,
),
SignUpFormWidget(),
SignUpFooterWidget(),
],
),
),
),
),
);
}
}
import 'package:flutter/material.dart';
class FormHeaderWidget extends StatelessWidget {
const FormHeaderWidget({
Key? key,
this.imageColor,
this.heightBetween,
required this.image,
required this.title,
required this.subTitle,
this.imageHeight = 0.2,
this.textAlign,
this.crossAxisAlignment = CrossAxisAlignment.start,
}) : super(key: key);
//Variables -- Declared in Constructor
final Color? imageColor;
final double imageHeight;
final double? heightBetween;
final String image, title, subTitle;
final CrossAxisAlignment crossAxisAlignment;
final TextAlign? textAlign;
@override
Widget build(BuildContext context) {
final size = MediaQuery.of(context).size;
return Column(
crossAxisAlignment: crossAxisAlignment,
children: [
Image(image: AssetImage(image), color: imageColor, height: size.height * imageHeight),
SizedBox(height: heightBetween),
Text(title, style: Theme.of(context).textTheme.headline1),
Text(subTitle, textAlign: textAlign, style: Theme.of(context).textTheme.bodyText1),
],
);
}
}
class SignUpFormWidget extends StatelessWidget {
const SignUpFormWidget({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.symmetric(vertical: tFormHeight - 10),
child: Form(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextFormField(
decoration: const InputDecoration(
label: Text(tFullName),
prefixIcon: Icon(Icons.person_outline_rounded)),
),
const SizedBox(height: tFormHeight - 20),
TextFormField(
decoration: const InputDecoration(
label: Text(tEmail), prefixIcon: Icon(Icons.email_outlined)),
),
const SizedBox(height: tFormHeight - 20),
TextFormField(
decoration: const InputDecoration(
label: Text(tPhoneNo), prefixIcon: Icon(Icons.numbers)),
),
const SizedBox(height: tFormHeight - 20),
TextFormField(
decoration: const InputDecoration(
label: Text(tPassword), prefixIcon: Icon(Icons.fingerprint)),
),
const SizedBox(height: tFormHeight - 10),
SizedBox(
width: double.infinity,
child: ElevatedButton(
onPressed: () {},
child: Text(tSignup.toUpperCase()),
),
)
],
),
),
);
}
}
class SignUpFooterWidget extends StatelessWidget {
const SignUpFooterWidget({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(
children: [
const Text("OR"),
SizedBox(
width: double.infinity,
child: OutlinedButton.icon(
onPressed: () {},
icon: const Image(
image: AssetImage(tGoogleLogoImage),
width: 20.0,
),
label: Text(tSignInWithGoogle.toUpperCase()),
),
),
TextButton(
onPressed: () {},
child: Text.rich(TextSpan(children: [
TextSpan(
text: tAlreadyHaveAnAccount,
style: Theme.of(context).textTheme.bodyText1,
),
TextSpan(text: tLogin.toUpperCase())
])),
)
],
);
}
}
//Use this inside main Theme to call Light or dark Modes
inputDecorationTheme: TTextFormFieldTheme.lightInputDecorationTheme, class TTextFormFieldTheme { TTextFormFieldTheme._(); static InputDecorationTheme lightInputDecorationTheme = const InputDecorationTheme( border: OutlineInputBorder(), prefixIconColor: tSecondaryColor, floatingLabelStyle: TextStyle(color: tSecondaryColor), focusedBorder: OutlineInputBorder( borderSide: BorderSide(width: 2, color: tSecondaryColor), ), ); static InputDecorationTheme darkInputDecorationTheme = const InputDecorationTheme( border: OutlineInputBorder(), prefixIconColor: tPrimaryColor, floatingLabelStyle: TextStyle(color: tPrimaryColor), focusedBorder: OutlineInputBorder( borderSide: BorderSide(width: 2, color: tPrimaryColor), ), ); }
OTHER USEFUL LINKS
- Install Android Studio
- Install Flutter
- Create a new flutter app
- Create Folder Structure
- Setup Theme in Flutter for Light & Dark Mode
This is the tutorial of our Flutter Login App Series.