diff --git a/lib/main.dart b/lib/main.dart index 6de2bf5..428c640 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; -import 'package:vscode_ipad/ui/home/screen.dart'; + +import 'ui/home/screen.dart'; void main() => runApp(MyApp()); diff --git a/lib/ui/app/side_window.dart b/lib/ui/app/side_window.dart index a17c6a3..03f84b3 100644 --- a/lib/ui/app/side_window.dart +++ b/lib/ui/app/side_window.dart @@ -25,6 +25,7 @@ class SideWindow extends StatelessWidget { child: Column( children: [ ExpansionTile( + initiallyExpanded: true, title: Text("Open Editors"), children: [ ListTile( @@ -54,6 +55,7 @@ class SideWindow extends StatelessWidget { ], ), ExpansionTile( + initiallyExpanded: true, title: Text("Project Name"), children: [ Container( diff --git a/pubspec.yaml b/pubspec.yaml index 0cd5d96..2afafc1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,4 +1,4 @@ -name: vscode_ipad +name: mobile_ide description: A Proof of COncept, VSCode on the iPad. # The following defines the version and build number for your application. diff --git a/test/widget_test.dart b/test/widget_test.dart index 00d100f..1c9ef61 100644 --- a/test/widget_test.dart +++ b/test/widget_test.dart @@ -8,7 +8,7 @@ import 'package:flutter/material.dart'; import 'package:flutter_test/flutter_test.dart'; -import 'package:vscode_ipad/main.dart'; +import 'package:mobile_ide/main.dart'; void main() { testWidgets('Counter increments smoke test', (WidgetTester tester) async {