9 lines
192 B
Dart
9 lines
192 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import 'src/app.dart';
|
|
|
|
void main() {
|
|
runApp(const ProviderScope(child: BaronSafeApp()));
|
|
}
|