File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11import 'package:common/model/file_type.dart' ;
22import 'package:device_apps/device_apps.dart' ;
33import 'package:fluent_ui/fluent_ui.dart' ;
4+ import 'package:localsend_app/config/theme.dart' ;
45import 'package:localsend_app/gen/strings.g.dart' ;
56import 'package:localsend_app/pages/base/base_normal_page.dart' ;
67import 'package:localsend_app/provider/apk_provider.dart' ;
@@ -237,7 +238,7 @@ class _ApkPickerPageState extends State<ApkPickerPage> with Refena {
237238 : FluentIcons .checkbox_composite,
238239 color: _selectedApps.contains (app)
239240 ? FluentTheme .of (context).iconTheme.color
240- : Colors .grey ,
241+ : FluentTheme . of (context).autoGrey ,
241242 )
242243 ],
243244 ),
Original file line number Diff line number Diff line change 11import 'package:common/isolate.dart' ;
22import 'package:fluent_ui/fluent_ui.dart' ;
3+ import 'package:localsend_app/config/theme.dart' ;
34import 'package:localsend_app/gen/strings.g.dart' ;
45import 'package:localsend_app/model/persistence/favorite_device.dart' ;
56import 'package:localsend_app/provider/favorites_provider.dart' ;
@@ -66,7 +67,7 @@ class _FavoritesDialogState extends State<FavoritesDialog> with Refena {
6667 if (favorites.isEmpty)
6768 Text (
6869 t.dialogs.favoriteDialog.noFavorites,
69- style: const TextStyle (color: Colors .grey ),
70+ style: TextStyle (color: FluentTheme . of (context).autoGrey ),
7071 ),
7172 for (final favorite in favorites)
7273 CardInkWell (
Original file line number Diff line number Diff line change 11import 'package:common/model/device.dart' ;
22import 'package:fluent_ui/fluent_ui.dart' ;
3+ import 'package:localsend_app/config/theme.dart' ;
34import 'package:localsend_app/util/device_type_ext.dart' ;
45import 'package:localsend_app/util/ip_helper.dart' ;
56import 'package:localsend_app/widget/custom_progress_bar.dart' ;
@@ -46,7 +47,7 @@ class DeviceListTile extends StatelessWidget {
4647 spacing: 10 ,
4748 children: [
4849 if (info != null )
49- Text (info! , style: const TextStyle (color: Colors .grey ))
50+ Text (info! , style: TextStyle (color: FluentTheme . of (context).autoGrey ))
5051 else if (progress != null )
5152 Padding (
5253 padding: const EdgeInsets .symmetric (vertical: 5 ),
You can’t perform that action at this time.
0 commit comments