Login, Signup UI Application using Flutter.
This application was my first attempt towards flutter and UI development. I've created a basic Social Media Login and Signup UI application and tried to make the UI user-friendly so that even a novice person🧍🏻can use it.
You can find the Screenshot folder which includes the screenshots 📸 of splash screen, login and signup for both android and ios devices.
-
Download Flutter SDK. Select the operating system of your device and install the SDK.
-
Set up Path for macOS :
-
view hidden files using cmd+shift+.
-
open .bash_profile if you are using bash in Terminal or .zshrc if using zsh.
-
Type the below command:
export PATH="$PATH:[PATH_OF_FLUTTER_GIT_DIRECTORY]/bin"
-
Save the file, Refresh the terminal and type below command to check if flutter is working or not:
flutter doctor
-
-
Create your first application using the below command:
flutter create name_of_project
-
Run your first flutter apllication using the below commad:
flutter run
You can find it in the lib folder which includes all the .dart files.
To use this project as it is save the folder as project to avoid any errors.