mirror of
https://github.com/foss42/apidash.git
synced 2025-08-06 05:32:26 +08:00
Create test_consts.dart
This commit is contained in:
13
test/test_consts.dart
Normal file
13
test/test_consts.dart
Normal file
@ -0,0 +1,13 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
final kThemeDataDark = ThemeData(
|
||||
useMaterial3: true,
|
||||
colorSchemeSeed: Colors.blue,
|
||||
brightness: Brightness.dark,
|
||||
);
|
||||
|
||||
final kThemeDataLight = ThemeData(
|
||||
useMaterial3: true,
|
||||
colorSchemeSeed: Colors.blue,
|
||||
brightness: Brightness.light,
|
||||
);
|
Reference in New Issue
Block a user