mirror of
https://github.com/johrpan/musicus_mobile.git
synced 2025-10-26 18:57:25 +01:00
Add instruments selector
This also adds a tile to the temporary home screen for debugging purposes.
This commit is contained in:
parent
ab7dd8dc00
commit
d9149d2ff2
2 changed files with 87 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
|||
|
||||
import '../backend.dart';
|
||||
import '../selectors/person.dart';
|
||||
import '../selectors/instruments.dart';
|
||||
|
||||
class HomeScreen extends StatelessWidget {
|
||||
@override
|
||||
|
|
@ -32,6 +33,15 @@ class HomeScreen extends StatelessWidget {
|
|||
fullscreenDialog: true,
|
||||
)),
|
||||
),
|
||||
ListTile(
|
||||
title: Text('Select instrument'),
|
||||
onTap: () => Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => InstrumentsSelector(),
|
||||
fullscreenDialog: true,
|
||||
)),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue