Το theming system του Flutter σας επιτρέπει να ορίσετε συνεπή στυλ απεικόνισης (χρώματα, γραμματοσειρές, στυλ συστατικών) σε ολόκληρη την εφαρμογή, με υποστήριξη για light/dark themes. Η κεντρικοποίηση του styling μέσω themes διασφαλίζει συνέπεια και καθιστά τις εφαρμογές εύκολα να αναπλαστούν.
Ορισμός ενός theme
// define the app's theme in MaterialApp
MaterialApp(
theme: ThemeData( // LIGHT theme
colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
textTheme: TextTheme(/* font styles */),
elevatedButtonTheme: /* button styling */,
useMaterial3: true,
),
darkTheme: ThemeData.dark(), // DARK theme
themeMode: ThemeMode.system, // follow the system setting (or .light/.dark)
)
