This repository has been archived on 2023-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
langue-phundrak-com/web/dart/main.dart
Lucien Cartier-Tilet 7c9e8b1e5f
Theme change made permanent, TOC and language changer work
Replaced all text in navbar by icons, moved TOC to the right of Home
button. TOC is now correctly displayed with small animation. Added black
theme to light and dark themes.
2020-04-28 22:32:37 +02:00

10 lines
225 B
Dart

import './reorganize_html.dart' show reorganizeHtml;
import './theme.dart' show makeThemeChanger, setTheme;
Future<void> main() async {
await setTheme();
await reorganizeHtml().then((_) {
makeThemeChanger();
});
}