Files
pixes/lib/components/md.dart
2024-06-13 20:54:31 +08:00

13 lines
338 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;
typedef TextField = md.TextField;
class ColorScheme {
static md.ColorScheme of(md.BuildContext context) {
return md.Theme.of(context).colorScheme;
}
}