This project provides a simple Flutter application where users can create and view their profiles. It showcases basic navigation between screens and state management in Flutter.
- Features
- Used Technologies
- Overview
- Prerequisites
- Setup and Installation
- Running the Application
- File Structure
- Router
- Testing
- Appendix: Additional Information
- User Profile Management:
- Create Profile: Users can enter their name, age, and occupation. All fields are validated to avoid nulls, and ensure they register input according to their type. There is a minimum of 3 chars for strings and a valid age range from 18 to 100. The registration button is not enabled until all the requirements are met.
- View Profile: Display the saved profile information.
- Navigate Easily: Buttons for moving between screens and returning to the home screen.
- Simple UI with Three Screens:
- Home Screen: Start screen with a button to create a profile.
- Profile Creation Screen: Allows input of user data.
- Profile Display Screen: Shows the entered data.
- Flutter: The framework used to build cross-platform mobile applications.
- Dart: Programming language for Flutter applications.
This project demonstrates the essentials of Flutter application structure and routing, enabling users to create, view, and navigate through different screens within a simple app layout.
- Flutter SDK: Install the Flutter SDK. You can download it from Flutter's official website.
- Dart: The programming language for Flutter.
- Android Studio or VS Code: Recommended IDEs for Flutter development.
-
Clone the Repository:
git clone https://github.com/yourusername/profile-creation-app.git cd profile-creation-app
-
Install Dependencies: Ensure all required Flutter packages are installed:
flutter pub get
-
Run the App: Start the app on an emulator or a connected device:
flutter run
-
Home Screen:
- The app opens on the Home screen, displaying a “Create Profile” button.
-
Profile Creation Screen:
- Upon clicking Create Profile, you are navigated to a screen where you can enter Name, Age, and Occupation.
- Click Save and View Profile to save and move to the Profile screen.
-
Profile Screen:
- The Profile screen displays the user’s Name, Age, and Occupation.
- A button labeled Back to Home returns you to the main Home screen.
The file structure of this project is as follows:
lib/
├── config/
│ └── router.dart # Defines app routing and navigation paths.
├── presentations/
│ ├── screens/
│ │ ├── creation/
│ │ │ └── crear_perfil.dart # Profile creation screen with form fields.
│ │ ├── home/
│ │ │ └── home.dart # Home screen with "Create Profile" button.
│ │ └── profile/
│ │ └── perfil.dart # Profile display screen with user data.
│ └── screens.dart # Screen manager for easier screen references.
└── main.dart # Entry point of the application.
To test the application, you can use the built-in tools in Flutter DevTools or Android Studio. The following steps demonstrate testing basic navigation and UI functionality:
- Run the Application in Debug Mode:
flutter run --debug
- Navigate through Screens:
- Ensure smooth transitions between Home, Profile Creation, and Profile screens.
- UI Validation:
- Check that entered data is displayed accurately on the Profile screen.
This app is structured as a simple demonstration of Flutter’s navigation and state management capabilities, providing a foundation for more advanced projects.