Basic framework

This commit is contained in:
2025-09-23 19:12:34 +00:00
parent 321f449433
commit e193efcd76
27 changed files with 1958 additions and 94 deletions

View File

@@ -0,0 +1,27 @@
import 'package:fluttery/fluttery.dart';
/// Abstract Environment contract
abstract class Environment extends Service {
/// Platform checks
bool get isAndroid;
bool get isIOS;
/// Build mode
bool get isDebug;
bool get isRelease;
bool get isProfile;
/// App info
Future<void> loadPackageInfo();
String get appName;
String get packageName;
String get version;
String get buildNumber;
}