Fiszki the ultimate flashcard app for easy, fun, and effective learning. Create, customize, and master any subject on the go!
Here you can find all the colors used in the "Fiszki" app, for both light mode and dark mode. Additionally, you can see how we've implemented these color palettes in the code.
Map<String, String> lightColors = {
'background_color': '#FAF1E6',
'window_color': '#FDFAF6',
'bonus_color': '#E4EFE7',
'focus_color': '#064420',
'font_color': '#000000',
};
Map<String, String> darkColors = {
'background_color': '#040D12',
'window_color': '#183D3D',
'bonus_color': '#5C8374',
'focus_color': '#93B1A6',
'font_color': '#FFFFFF',
};
The main window of the application is a simple category manager with a easy layout. You can create new categories in it, delete old ones, or personalize existing ones in the way you choose.
After entering a created category, we can browse our flashcards. Additionally, by pressing the 'Edit Flashcard' button, we can add new ones, edit existing ones, or simply delete the ones we want.
At first, the flashcard only shows the question. Upon clicking it, the associated answer we assigned is revealed.