Theming & Colors
constants.dart – file contains all constants and parameters used in this chat app. It is classic material flutter theming, which allows you to fully customize your application style from one place.
All you need to change the colors of your variables. For example, you want to change the primary color of your app, open file constants file, and change colors like shown below:
That’s the result:
Also, you can change text style, button color, scaffold color, text font, text weight, etc.
Widgets & Functions
Like every flutter app, you can change all widgets that you want.
Аor your convenience, we marked screens with special comments, which show functions, variables, or widgets.
This comment means variables for the current screen will be defined below:
///
/// VARIABLES:
///
This comment means functions for the current screen will be defined below:
///
/// FUNCTIONS & METHODS:
///
This comment means build method for the current screen will be defined below:
///
/// Build Widget:
///