aboutsummaryrefslogtreecommitdiff
path: root/lib/views/main_view.dart
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2023-03-05 12:18:13 +0100
committerdavidpkj <davidpenkow1@gmail.com>2023-03-05 12:18:13 +0100
commitb654999240fbfc4e6c19badb93c7ec54ff4afab6 (patch)
tree8a3904bb5bce857b7faad36168231108009691ea /lib/views/main_view.dart
parentb71c69b065daef4f028146d00951534515c50568 (diff)
Minor bug and spelling fixes
Diffstat (limited to 'lib/views/main_view.dart')
-rw-r--r--lib/views/main_view.dart3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/views/main_view.dart b/lib/views/main_view.dart
index 97ad04e..759e423 100644
--- a/lib/views/main_view.dart
+++ b/lib/views/main_view.dart
@@ -33,7 +33,8 @@ class _MainViewState extends State<MainView> with SingleTickerProviderStateMixin
super.initState();
getOpenFileUrl();
WidgetsBinding.instance.addObserver(this);
- _tabController = TabController(length: 2, vsync: this);
+ _tabController = TabController(length: 2, vsync: this, initialIndex: 1);
+ // TODO: Make initialIndex a setting and maybe remember during app use
}
@override