arcane 5.3.4
arcane: ^5.3.4 copied to clipboard
A modified variant of shadcn_flutter along with new features & improvements. This package follows the changes of shadcn_flutter while also maintaining additional features & fixes.
This is a modified fork of shadcn_flutter and includes resources & merged code from Phosphor Icons & Ionicons. It is designed for quickly creating apps.
Documentation | Pub.dev | GitHub
Forked / Modified Packages #
- shadcn_flutter for general widgets & overall UI.
- phosphor_flutter & ionicons for icons
- blurme for blur effects (needed to modify) license unneeded as it says "Use however you want".
Initial Setup #
Please read the Installation guide for more information.
Addon Packages #
- arcane_fluf for using flutterfire stack (which utilizes: )
- arcane_auth for firebase authentication
- arcane_user for user data models in firestore
- arcane_fire for initializing firebase with arcane
void main() => runApp("mtg_tesseract", ArcaneWindow(
windowColor: Colors.transparent,
child: ArcaneFluf(
options: DefaultFirebaseOptions.currentPlatform,
onRegisterCrud: $registerCrud,
onRegisterUserService: () => services().register<UserService>(() => UserService()),
child: MyCustomInitializer(
///////////
child: const TesseractApp()
)
)
));
copied to clipboard