Quick Grammar Fixes (#152744)

Quick Grammar Fixes
This commit is contained in:
Tirth 2024-08-03 02:46:24 +05:30 committed by GitHub
parent 7b25a068e2
commit d6e4555494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ class DrawerThemeData with Diagnosticable {
/// Overrides the default value of [Drawer.shape].
final ShapeBorder? shape;
/// Overrides the default value of [Drawer.shape] for a end drawer.
/// Overrides the default value of [Drawer.shape] for an end drawer.
final ShapeBorder? endShape;
/// Overrides the default value of [Drawer.width].

View File

@ -2566,7 +2566,7 @@ void main() {
});
// Regression test for https://github.com/flutter/flutter/issues/80256
testWidgets('The second page should have a back button even it has a end drawer', (WidgetTester tester) async {
testWidgets('The second page should have a back button even it has an end drawer', (WidgetTester tester) async {
final Page<void> page1 = MaterialPage<void>(
key: const ValueKey<String>('1'),
child: Scaffold(

View File

@ -6605,7 +6605,7 @@ void main() {
expect(decoration.isCollapsed, false);
});
test('InputDecorationTheme.isCollapsed can be overriden', () {
test('InputDecorationTheme.isCollapsed can be overridden', () {
final InputDecoration decoration = const InputDecoration(
isCollapsed: true,
hintText: 'Hello, Flutter!',