We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5a49f commit ab2e3faCopy full SHA for ab2e3fa
lib/editor.dart
@@ -310,6 +310,8 @@ class _EditorPageState extends State<EditorPage> {
310
// Populate the file browser tree once
311
initializeTreeView();
312
}
313
+ var tabController = TabbedViewController(tabs,);
314
+ tabController.selectedIndex = selectedTab;
315
final page = Stack(children: [
316
Column(//direction: Axis.vertical,
317
children: [
@@ -326,7 +328,7 @@ class _EditorPageState extends State<EditorPage> {
326
328
/// Just refresh the state
327
329
});
330
},
- controller: TabbedViewController(tabs),
331
+ controller: tabController,
332
))
333
: const Center(child: Text("No file opened")),
334
),
0 commit comments