mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-18 03:10:28 +08:00

Now notes are saved in the git repo, and immediately synced. This is not the best implementation, as the notes are being reloaded a lot, and the error handling is terrible (I miss golang). But it's the first working poc.
14 lines
304 B
Dart
14 lines
304 B
Dart
import 'package:flutter/material.dart';
|
|
//import 'package:http/http.dart' as http;
|
|
|
|
import 'package:journal/app.dart';
|
|
import 'package:journal/gitapp.dart';
|
|
import 'package:journal/state_container.dart';
|
|
|
|
void main() {
|
|
runApp(new StateContainer(
|
|
child: JournalApp(),
|
|
//child: GitApp(),
|
|
));
|
|
}
|