misc: initial commit

This commit is contained in:
hdbg
2025-10-09 17:50:04 +02:00
commit 49965fc3fc
20 changed files with 1492 additions and 0 deletions

19
lib/main.dart Normal file
View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:rive_native/rive_native.dart';
import 'package:talker_flutter/talker_flutter.dart';
export 'package:markettakers/src/bootstrapper.dart'
show Bootstrapper, StageFactory, StageController;
final talker = Talker();
final commonTheme = ThemeData(
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.deepPurple,
brightness: Brightness.dark,
).copyWith(secondary: Colors.deepPurpleAccent),
);
void init() async {
await RiveNative.init();
}