bogui/lib/global.dart

17 lines
395 B
Dart
Raw Normal View History

2023-01-07 13:02:53 +01:00
import 'package:flutter/material.dart';
2023-01-08 23:27:07 +01:00
import 'package:logger/logger.dart';
2023-01-07 13:02:53 +01:00
2023-02-22 22:23:01 +01:00
// late StateProvider<String> appVersion;
2023-01-07 13:02:53 +01:00
// Colors
const Color orangeC = Color(0xffd07316);
const Color yellowC = Color(0xffFFD68E);
const Color floattingYellow = Color(0xffEFEFBF);
const Color backgroundColor = Color(0xFFF5F5F5);
2023-01-08 03:46:34 +01:00
late double screenWidth;
late double screenHight;
2023-01-08 23:27:07 +01:00
// Logger
final log = Logger();