Skip to content

Commit

Permalink
fix: Light on the light issue in light mode on dark mode device (#5093)
Browse files Browse the repository at this point in the history
* Fix the Light on light issue in light mode

* fix: light on the light issue in light mode on dark mode device

* fix: light on the light issue in light mode on dark mode device

* Discard the Changes from the theme file

* Discard the changes of code formatting,
  • Loading branch information
jay-isampelliwar committed Feb 29, 2024
1 parent d704b58 commit be2453e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions packages/smooth_app/lib/pages/scan/search_history_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ class _SearchHistoryViewState extends State<SearchHistoryView> {
@override
Widget build(BuildContext context) {
return ListTileTheme(
data: const ListTileThemeData(
titleTextStyle: TextStyle(fontSize: 20.0),
data: ListTileThemeData(
titleTextStyle: const TextStyle(fontSize: 20.0),
minLeadingWidth: 18.0,
iconColor: Theme.of(context).colorScheme.onBackground,
textColor: Theme.of(context).colorScheme.onBackground,
),
child: ListView.builder(
itemBuilder: (BuildContext context, int i) {
Expand Down
16 changes: 8 additions & 8 deletions packages/smooth_app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -728,10 +728,10 @@ packages:
dependency: "direct main"
description:
name: flutter_svg
sha256: d39e7f95621fc84376bc0f7d504f05c3a41488c562f4a8ad410569127507402c
sha256: "7b4ca6cf3304575fe9c8ec64813c8d02ee41d2afe60bcfe0678bcb5375d596a2"
url: "https://pub.dev"
source: hosted
version: "2.0.9"
version: "2.0.10+1"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down Expand Up @@ -1719,26 +1719,26 @@ packages:
dependency: transitive
description:
name: vector_graphics
sha256: "18f6690295af52d081f6808f2f7c69f0eed6d7e23a71539d75f4aeb8f0062172"
sha256: "32c3c684e02f9bc0afb0ae0aa653337a2fe022e8ab064bcd7ffda27a74e288e3"
url: "https://pub.dev"
source: hosted
version: "1.1.9+2"
version: "1.1.11+1"
vector_graphics_codec:
dependency: transitive
description:
name: vector_graphics_codec
sha256: "531d20465c10dfac7f5cd90b60bbe4dd9921f1ec4ca54c83ebb176dbacb7bb2d"
sha256: c86987475f162fadff579e7320c7ddda04cd2fdeffbe1129227a85d9ac9e03da
url: "https://pub.dev"
source: hosted
version: "1.1.9+2"
version: "1.1.11+1"
vector_graphics_compiler:
dependency: transitive
description:
name: vector_graphics_compiler
sha256: "03012b0a33775c5530576b70240308080e1d5050f0faf000118c20e6463bc0ad"
sha256: "12faff3f73b1741a36ca7e31b292ddeb629af819ca9efe9953b70bd63fc8cd81"
url: "https://pub.dev"
source: hosted
version: "1.1.9+2"
version: "1.1.11+1"
vector_math:
dependency: transitive
description:
Expand Down

0 comments on commit be2453e

Please sign in to comment.