Skip to content

MartinPit/HomeworkApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flutter Homeworks App

A homework app build using Flutter together with Firebase with support of two user groups, students and teachers. Currently, the only supported platform is Android.

Build

Building process is quite straighforward, the only necessary command is flutter build apk. The newly built apk will be saved in /build/app/outputs/apk/relase subfolder in the project folder.

Dynamic Colors

Android 13 and higher, supports apps generating their colorway dynamically from the user's wallpaper. This feature is disabled by default. To enable it, you will need to change 2 lines in the main.dart file.

To enable dynamic colors for the light theme, you need to change line 189 from:

colorScheme: colorScheme,

to:

colorScheme: lightDynamic ?? colorScheme,

Similarly, to activate dynamic color for dark theme, change line 195 accordingly:

colorScheme: darkColorScheme,

to:

colorScheme: darkDynamic ?? darkColorScheme,

Design

To see the preview of the app, check out the following link, showcasing the app in Figma.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages