mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
24 lines
450 B
Dart
24 lines
450 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'app.dart';
|
|
import 'log.dart';
|
|
import 'veilid_init.dart';
|
|
import 'veilid_theme.dart';
|
|
|
|
/////////////////////////////// Entrypoint
|
|
void main() {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
// Initialize Log
|
|
initLoggy();
|
|
|
|
// Initialize Veilid
|
|
veilidInit();
|
|
|
|
// Run the app
|
|
runApp(MaterialApp(
|
|
title: 'Veilid Plugin Demo',
|
|
theme: newVeilidTheme(),
|
|
home: const MyApp()));
|
|
}
|