1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00

Analysis options, fixes and format (#107)

This commit is contained in:
Brett Morgan
2019-07-04 15:48:56 +10:00
committed by GitHub
parent 01478f5e88
commit 815079cd4d
11 changed files with 69 additions and 37 deletions

View File

@@ -77,14 +77,14 @@ class SongDetailTab extends StatelessWidget {
// Non-shared code below because we're using different scaffolds.
// ===========================================================================
Widget _buildAndroid(context) {
Widget _buildAndroid(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text(song)),
body: _buildBody(),
);
}
Widget _buildIos(context) {
Widget _buildIos(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(
middle: Text(song),