import 'package:flutter/material.dart'; import 'package:nextcloud_reminder/homescreen.dart'; void main() { runApp(const TodoTxtReminderApp()); } class TodoTxtReminderApp extends StatelessWidget { const TodoTxtReminderApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Nextcloud Reminder', theme: ThemeData( // This is the theme of your application. primarySwatch: Colors.blue, ), home: const HomeWidget(title: 'todo.txt reminder'), ); } }