diff options
| author | Akshay Nair <phenax5@gmail.com> | 2020-06-03 14:39:52 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2020-06-03 14:39:52 +0530 |
| commit | 871706b606c77eeac13bfcea67c3ce1d71203d2c (patch) | |
| tree | 82d3ca8b51cc001606f5412a20730a813b7d9e2d /lib/components | |
| parent | c745b90dfdc97a2e04582051b01fde83883d8e3e (diff) | |
| download | daft-launcher-871706b606c77eeac13bfcea67c3ce1d71203d2c.tar.gz daft-launcher-871706b606c77eeac13bfcea67c3ce1d71203d2c.zip | |
Adds shared preferences for config/theme storage + refactors a streamstate
Diffstat (limited to '')
| -rw-r--r-- | lib/components/SearchableAppList.dart | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/components/SearchableAppList.dart b/lib/components/SearchableAppList.dart index 8e0d818..f41ba18 100644 --- a/lib/components/SearchableAppList.dart +++ b/lib/components/SearchableAppList.dart @@ -21,6 +21,8 @@ class _SearchableAppListState extends State<SearchableAppList> { @override Widget build(BuildContext ctx) { + ThemeData theme = Theme.of(context); + return Column( children: [ Container( @@ -28,7 +30,9 @@ class _SearchableAppListState extends State<SearchableAppList> { child: TextField( onChanged: onInput, decoration: InputDecoration( - border: InputBorder.none, + prefixStyle: TextStyle(color: Color(0xFF888888)), + prefix: Text('/'), + hintStyle: TextStyle(color: Color(0xFFD8DEE9)), hintText: 'Search', ), ), |
