From e1bdf82973d1086cb8720dfff303cabf47dfb1cc Mon Sep 17 00:00:00 2001 From: Matthew Patrick <Matthew.535200018@stu.untar.ac.id> Date: Sun, 15 May 2022 16:34:17 +0700 Subject: [PATCH] Search_Form - Changed Color Scheme --- lib/components/search_form.dart | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/components/search_form.dart b/lib/components/search_form.dart index 46dba28..9eda1df 100644 --- a/lib/components/search_form.dart +++ b/lib/components/search_form.dart @@ -20,15 +20,17 @@ class SearchForm extends StatelessWidget { onSaved: (value) {}, decoration: InputDecoration( filled: true, - fillColor: Colors.white, + fillColor: const Color(0xff212226), hintText: "Search items...", + hintStyle: TextStyle(color: Colors.white), border: outlineInputBorder, enabledBorder: outlineInputBorder, focusedBorder: outlineInputBorder, errorBorder: outlineInputBorder, prefixIcon: Padding( padding: const EdgeInsets.all(14), - child: SvgPicture.asset("assets/icons/Search.svg"), + child: SvgPicture.asset("assets/icons/Search.svg", + color: Colors.white), ), suffixIcon: Padding( padding: const EdgeInsets.symmetric(