12 lines
205 B
Dart
12 lines
205 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import 'app.dart';
|
|
|
|
void main() {
|
|
runApp(
|
|
const ProviderScope(
|
|
child: TodoApp(),
|
|
),
|
|
);
|
|
}
|