1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

Add new DefaultRulesPage (#875)

This commit is contained in:
Abdullah Deshmukh
2021-08-16 18:50:14 -07:00
committed by GitHub
parent 1e00fd0bde
commit 0aad30fc5b
2 changed files with 76 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:linting_tool/layout/adaptive.dart'; import 'package:linting_tool/layout/adaptive.dart';
import 'package:linting_tool/model/rules_store.dart'; import 'package:linting_tool/model/rules_store.dart';
import 'package:linting_tool/pages/rules_page.dart'; import 'package:linting_tool/pages/default_rules_page.dart';
import 'package:linting_tool/theme/colors.dart'; import 'package:linting_tool/theme/colors.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
@@ -55,7 +55,7 @@ class DefaultLintsPage extends StatelessWidget {
Navigator.push<void>( Navigator.push<void>(
context, context,
MaterialPageRoute( MaterialPageRoute(
builder: (context) => RulesPage(profile: profile), builder: (context) => DefaultRulesPage(profile: profile),
), ),
); );
}, },

View File

@@ -0,0 +1,74 @@
// Copyright 2021 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:linting_tool/layout/adaptive.dart';
import 'package:linting_tool/model/profile.dart';
import 'package:linting_tool/widgets/lint_expansion_tile.dart';
class DefaultRulesPage extends StatelessWidget {
final RulesProfile profile;
const DefaultRulesPage({
required this.profile,
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
final isDesktop = isDisplayLarge(context);
final isTablet = isDisplayMedium(context);
var textTheme = Theme.of(context).textTheme;
final startPadding = isTablet
? 60.0
: isDesktop
? 120.0
: 4.0;
final endPadding = isTablet
? 60.0
: isDesktop
? 120.0
: 4.0;
return Scaffold(
appBar: AppBar(
title: Text(
profile.name,
style: textTheme.subtitle2!.copyWith(
color: textTheme.bodyText1!.color,
),
),
leading: Padding(
padding: const EdgeInsets.only(left: 80.0),
child: TextButton.icon(
onPressed: () {
Navigator.pop(context);
},
icon: const Icon(Icons.arrow_back_ios_new),
label: const Text('Back'),
),
),
leadingWidth: 160.0,
toolbarHeight: 38.0,
backgroundColor: Colors.white,
brightness: Brightness.light,
),
body: ListView.separated(
padding: EdgeInsetsDirectional.only(
start: startPadding,
end: endPadding,
top: isDesktop ? 28 : 0,
bottom: isDesktop ? kToolbarHeight : 0,
),
itemCount: profile.rules.length,
cacheExtent: 5,
itemBuilder: (context, index) {
return LintExpansionTile(
rule: profile.rules[index],
);
},
separatorBuilder: (context, index) => const SizedBox(height: 4),
),
);
}
}