mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
6 lines
198 B
Dart
6 lines
198 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
extension ThemeExtensions on BuildContext {
|
|
ColorScheme get colors => Theme.of(this).colorScheme;
|
|
TextTheme get textTheme => Theme.of(this).textTheme;
|
|
}
|