Flutter: Code Organization (Revised)

Conner
Flutter Community
Published in
3 min readDec 15, 2019

--

As I wrote in the first version of my article, my biggest problem when getting into Flutter development was figuring out how to manage my code. Native Android development splits UI code and Logic code between XML files and Java (or Kotlin) files respectively, but with Flutter it can all become a jumbled mess if you’re not careful. After working with Flutter for almost two years, this has been written as a simple guide to architecture your app in the best way possible for future refactoring and readability.

The main.dart

The foundation of any Flutter app, the main.dart file, should hold very little code and only serve as an overview to an app.

The widget being run by the runApp function should be a StatelessWidget, and the widget itself should be no more complicated than a simple MaterialApp/CupertinoApp/WidgetsApp wrapped in a BlocProviderTree.

The MaterialApp itself should have no heavy code in it, instead importing the theme, routes, etc. from other files.

The routes.dart

To further simplify the main.dart file, a separate routes.dart file should exist which only holds the Map<String, WidgetBuilder> as a simple map of all of the app’s routes.

Sub Folders

  • The theme folder just contains a style.dart with the app theme which is accessed in the main.dart file
  • The services folder holds some web APIs and native interaction code
  • The components folder has custom widgets which are used by multiple different screens
  • The models folder contains files each with a custom class of an object widely used throughout the app
  • The bloc folder holds an abstract class in bloc.dart as well as bloc-prov.dart and a bloc-prov-tree.dart both of which are based off of code found here
  • The blocs folder is pretty straightforward, holding multiple general bloc files (all of which extend the abstract Bloc class mentioned above) and a blocs.dart which acts as a single file exporting all the folder’s blocs (I used this video to learn how to structure the bloc files).
  • The screens folder holds many different folders, each of which corresponds to a different screen of the app. Each screen folder holds three things: a primary screen file which serves to organize each component, a BLoC file that is only used for that screen, and a “components” folder that holds each component file used by the screen. Any section of a screen more complicated then a few widgets should be its own component, and some very complex components may even require their own BLoC file and components as a screen does.

More Reading

After working with the first system of code organization I designed, I came up with this organization which works better for both large and small apps. I will be using this new architecture for all of my future apps, and I suggest for you to do so as well. An example can be found here.

Also, if you want this setup to be your default, you can learn how to make it or something else your default app template here.

--

--