mirror of
https://github.com/wgh136/pixes.git
synced 2025-09-27 12:57:24 +00:00
12 lines
304 B
Dart
12 lines
304 B
Dart
import 'package:flutter/material.dart' as md;
|
|
|
|
typedef MdIcons = md.Icons;
|
|
typedef MdTheme = md.Theme;
|
|
typedef MdThemeData = md.ThemeData;
|
|
typedef MdColorScheme = md.ColorScheme;
|
|
|
|
class ColorScheme {
|
|
static md.ColorScheme of(md.BuildContext context) {
|
|
return md.Theme.of(context).colorScheme;
|
|
}
|
|
} |