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