18 lines
523 B
Dart
18 lines
523 B
Dart
import "package:flutter/material.dart";
|
|
|
|
extension SchemeToTheme on ColorScheme {
|
|
ThemeData get theme => ThemeData.from(colorScheme: this).copyWith(
|
|
cardTheme: CardThemeData(color: primaryContainer),
|
|
appBarTheme: AppBarTheme(
|
|
titleSpacing: 0,
|
|
backgroundColor: surfaceContainerLow,
|
|
),
|
|
textTheme: ThemeData(
|
|
fontFamilyFallback: ["sans"],
|
|
brightness: brightness,
|
|
).textTheme,
|
|
inputDecorationTheme: const InputDecorationTheme(
|
|
border: OutlineInputBorder(),
|
|
),
|
|
);
|
|
}
|