From ac9fefdfa68abd535927a5746262ac2d92c3ff19 Mon Sep 17 00:00:00 2001 From: Shi-Hao Hong Date: Tue, 10 Dec 2019 13:24:44 -0500 Subject: [PATCH] Fix InputDecorator.isDense typo from true -> false (#46648) --- packages/flutter/lib/src/material/input_decorator.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/material/input_decorator.dart b/packages/flutter/lib/src/material/input_decorator.dart index ed7f220f47..b85b9fc4e1 100644 --- a/packages/flutter/lib/src/material/input_decorator.dart +++ b/packages/flutter/lib/src/material/input_decorator.dart @@ -2406,7 +2406,7 @@ class InputDecoration { /// decorate a Material Design text field. /// /// Unless specified by [ThemeData.inputDecorationTheme], - /// [InputDecorator] defaults [isDense] to true, and [filled] to false, + /// [InputDecorator] defaults [isDense] to false, and [filled] to false, /// and [maxLines] to 1. The default border is an instance /// of [UnderlineInputBorder]. If [border] is [InputBorder.none] then /// no border is drawn.