flashcards-app/lib/configs/constants.dart

36 lines
1.1 KiB
Dart

import 'package:flutter/material.dart';
const Color constMainColor = Color.fromARGB(255, 161, 25, 202);
const Color constBackgroundColor = Color.fromARGB(255, 89, 84, 88);
const Color constLeftButtonColor = Color.fromARGB(255, 184, 48, 14);
const Color constRightButtonColor = Color.fromARGB(255, 76, 184, 14);
//wysokość AppBar (poza ekranem głównm)
const double constAppBarH = 60;
const double constIconPadding = 0.06;
//czas animacji przesunięcie fiszki lewo/prawo
const int constFlashcardSizeSlideDuration = 300;
//czas animacji wyjechania fiszki z dołu ekranu
const int constFlashcardUpSlideDuratoin = 400;
//czas połowy obrotu fiszki
const int constHalfFlipDuration = 200;
const double constBorderRadiusElevatedButtons = 10;
const double constFlashcardBorderWidth = 3;
//wymiary karty fiszki - wartości od 0 do 1 bo to jest mnożone przed wymar ekaranu
const double constFlashcardHeigth = 0.68;
const double constFlashcardWidth = 0.85;
const double constHomePageAppbarHeigth = 0.1;
//rozmiar tekstu dla liczby słówek w danym secie (na home page)
const double constFontSizeTopicTileWordsCount = 30;
const int constProgressBarIncreaseDuration = 250;