From aa478bfef5b26695b47169d8e2bfb09a0d16065f Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Wed, 11 Nov 2020 14:54:22 +0100 Subject: [PATCH] use bold fontweight --- example/lib/advanced_options_page.dart | 4 ++++ example/pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/example/lib/advanced_options_page.dart b/example/lib/advanced_options_page.dart index f0373345..8a4c79c0 100644 --- a/example/lib/advanced_options_page.dart +++ b/example/lib/advanced_options_page.dart @@ -74,6 +74,7 @@ class _AdvancedOptionsPageState extends State { decoration: InputDecoration( labelStyle: TextStyle( fontSize: 14, + fontWeight: FontWeight.bold, color: Colors.black.withOpacity(.5), ), border: UnderlineInputBorder( @@ -99,6 +100,7 @@ class _AdvancedOptionsPageState extends State { textInputAction: TextInputAction.next, decoration: InputDecoration( labelStyle: TextStyle( + fontWeight: FontWeight.bold, fontSize: 14, color: Colors.black.withOpacity(.5), ), @@ -125,6 +127,7 @@ class _AdvancedOptionsPageState extends State { textInputAction: TextInputAction.next, decoration: InputDecoration( labelStyle: TextStyle( + fontWeight: FontWeight.bold, fontSize: 14, color: Colors.black.withOpacity(.5), ), @@ -146,6 +149,7 @@ class _AdvancedOptionsPageState extends State { decoration: InputDecoration( labelStyle: TextStyle( fontSize: 14, + fontWeight: FontWeight.bold, color: Colors.black.withOpacity(.5), ), border: UnderlineInputBorder( diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 894bc679..c6743cd4 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,6 +1,6 @@ name: example description: A new Flutter project. -version: 1.0.52+54 +version: 1.0.53+55 environment: sdk: ">=2.2.2 <3.0.0"