Skip to content

Commit d641557

Browse files
committed
Plugins Browser
1 parent d2c55e6 commit d641557

File tree

23 files changed

+370
-77
lines changed

23 files changed

+370
-77
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ google-services.json
5858
freeline.py
5959
freeline/
6060
freeline_project_description.json
61-
61+
/windows/.vs/*
6262
# fastlane
6363
fastlane/report.xml
6464
fastlane/Preview.html
Loading
Loading
Loading
Loading
Loading

assets/logo.png

1.75 KB
Loading

assets/logo.svg

Lines changed: 69 additions & 27 deletions
Loading

lib/homepage.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ class _HomePageState extends State<HomePage> {
8585
var projectsWidgets = <Widget>[];
8686

8787
void showSettings() {
88-
Navigator.pushNamed(context, SettingsPage.routeName);
88+
Navigator.push(context, MaterialPageRoute<void>(
89+
builder: (BuildContext context) => SettingsPage(mm)));
8990
}
9091

9192
Future<void> showCreateProjectDialog() async {

lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class CoreCoderAppState extends State<CoreCoderApp>{
4646
routes: {
4747
"/": (context) => HomePage(),
4848
EditorPage.routeName: (context) => const EditorPage(),
49-
SettingsPage.routeName: (context) => SettingsPage(),
5049
PluginsBrowser.routeName: (context) => const PluginsBrowser()
5150
},
5251
),

0 commit comments

Comments
 (0)