1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Reformats platform_design to match repo conventions, fixes missing icon (#89)

This commit is contained in:
Andrew Brogdon
2019-06-11 08:53:53 -07:00
committed by GitHub
parent 325c5a5d2b
commit 938ef8682c
9 changed files with 271 additions and 69 deletions

View File

@@ -11,7 +11,7 @@ class SongsTab extends StatefulWidget {
static const androidIcon = Icon(Icons.music_note);
static const iosIcon = Icon(CupertinoIcons.music_note);
const SongsTab({ Key key, this.androidDrawer }) : super(key: key);
const SongsTab({Key key, this.androidDrawer}) : super(key: key);
final Widget androidDrawer;
@@ -47,8 +47,7 @@ class _SongsTabState extends State<SongsTab> {
}
Widget _listBuilder(context, index) {
if (index >= _itemsLength)
return null;
if (index >= _itemsLength) return null;
// Show a slightly different color palette. Show poppy-ier colors on iOS
// due to lighter contrasting bars and tone it down on Android.
@@ -65,13 +64,15 @@ class _SongsTabState extends State<SongsTab> {
song: songNames[index],
color: color,
heroAnimation: AlwaysStoppedAnimation(0),
onPressed: () => Navigator.of(context).push(MaterialPageRoute(
builder: (context) => SongDetailTab(
id: index,
song: songNames[index],
color: color,
),
)),
onPressed: () => Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => SongDetailTab(
id: index,
song: songNames[index],
color: color,
),
),
),
),
),
);
@@ -138,7 +139,9 @@ class _SongsTabState extends State<SongsTab> {
CupertinoSliverNavigationBar(
trailing: CupertinoButton(
padding: EdgeInsets.zero,
child: Icon(CupertinoIcons.shuffle),
// TODO(redbrogdon): Change this back to shuffle once the new icon
// makes it into Flutter's stable channel.
child: Icon(CupertinoIcons.shuffle_thick),
onPressed: _togglePlatform,
),
),