Helping to share the web since 1996
Farid Fakhnavar
@onedevbuddy
FlutterPlate is boilerplate with Clean Architecture. It has RevenueCat and Admob integration. It can work with three types of data traditional REST Api, Sqlite Drift in our case and Firestore. It also has almost all Firebase products configured. There are already templates for Paywall and Settings with needed buttons and services which handle these buttons actions. LetÂ’s take a closer look at Data layer. Here we are separating our 3 types of Data. If you donÂ’t use rest you can just simply remove whole folder related to it. And left only data type you will use for certain project. This is advantage of Clean Architecture. We are not dependent on data sources. Our Data layer serves for Presentation. Then we have Domain layer. It is layer which has only Dart code. It is clear from dependencies here we have rules for communication of Presentation with Data layer. It means we will have here our repository and entity models. And our main layer is Presentation.
View Review Page →