Compare commits

..

No commits in common. "4a8478c20db32fa3b1b732a3d6a6760f3975b4f2" and "3f6ea2e332831481f967d28e842af40af7fe3182" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@ class _MyHomePageState extends State<MyHomePage>
builder: (BuildContext context, SearchController controller) { builder: (BuildContext context, SearchController controller) {
return SearchBar( return SearchBar(
controller: controller, controller: controller,
padding: WidgetStateProperty.all<EdgeInsetsGeometry>( padding: MaterialStateProperty.all<EdgeInsetsGeometry>(
const EdgeInsets.only( const EdgeInsets.only(
top: 6.0, top: 6.0,
bottom: 6.0, bottom: 6.0,
@ -95,10 +95,10 @@ class _MyHomePageState extends State<MyHomePage>
controller.openView(); controller.openView();
_onSearchChanged(''); _onSearchChanged('');
}, },
backgroundColor: WidgetStateProperty.all( backgroundColor: MaterialStateProperty.all(
const Color.fromARGB(255, 30, 30, 30)), const Color.fromARGB(255, 30, 30, 30)),
hintText: 'Search contacts', hintText: 'Search contacts',
hintStyle: WidgetStateProperty.all( hintStyle: MaterialStateProperty.all(
const TextStyle(color: Colors.grey, fontSize: 16.0), const TextStyle(color: Colors.grey, fontSize: 16.0),
), ),
leading: const Icon( leading: const Icon(
@ -106,7 +106,7 @@ class _MyHomePageState extends State<MyHomePage>
color: Colors.grey, color: Colors.grey,
size: 24.0, size: 24.0,
), ),
shape: WidgetStateProperty.all<RoundedRectangleBorder>( shape: MaterialStateProperty.all<RoundedRectangleBorder>(
RoundedRectangleBorder( RoundedRectangleBorder(
borderRadius: BorderRadius.circular(12.0), borderRadius: BorderRadius.circular(12.0),
), ),

View File

@ -16,7 +16,7 @@ class MyApp extends StatelessWidget {
theme: ThemeData( theme: ThemeData(
brightness: Brightness.dark brightness: Brightness.dark
), ),
home: SafeArea(child: MyHomePage()), home: const MyHomePage(),
) )
); );
} }