This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
const primaryColor = Color(0xFFFDFDFD); | |
const secondaryColor = Color(0xFF252525); | |
class MyApp extends StatelessWidget { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
const primaryColor = Color(0xFFFDFDFD); | |
const secondaryColor = Color(0xFF252525); | |
const double iconSize = 36; | |
const imageUrl = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// constants/app_style.dart | |
import 'package:flutter/material.dart'; | |
abstract class AppStyle { | |
static const primaryColor = Color(0xFFFDFDFD); | |
static const secondaryColor = Color(0xFF252525); | |
static const backgroundGrey = Color(0xFF383838); | |
static const captionColor = Color(0xFFbababa); |