Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.1 KB

README.md

File metadata and controls

54 lines (44 loc) · 1.1 KB

Flutter Starter Kit

A new Flutter project.

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

File Structure

lib/ |- main.dart |- screens/ |- home_screen.dart |- login_screen.dart |- profile_screen.dart |- widgets/ |- button.dart |- text_field.dart |- ... |- models/ |- user.dart |- post.dart |- ... |- blocs/ |- user_bloc.dart |- post_bloc.dart |- ... |- repositories/ |- user_repository.dart |- post_repository.dart |- ... |- services/ |- api_service.dart |- storage_service.dart |- ... |- utils/ |- constants.dart |- helpers.dart |- ... |- routes/ |- app_routes.dart |- ...