1
0
mirror of https://github.com/flutter/samples.git synced 2026-04-03 18:22:45 +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

@@ -83,7 +83,7 @@ class _SettingsTabState extends State<SettingsTab> {
// Non-shared code below because this tab uses different scaffolds.
// ===========================================================================
Widget _buildAndroid(context) {
Widget _buildAndroid(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(SettingsTab.title),
@@ -92,7 +92,7 @@ class _SettingsTabState extends State<SettingsTab> {
);
}
Widget _buildIos(context) {
Widget _buildIos(BuildContext context) {
return CupertinoPageScaffold(
navigationBar: CupertinoNavigationBar(),
child: _buildList(),