|
@@ -11,6 +11,7 @@ import 'package:widgets/ext/ex_widget.dart';
|
|
|
import 'package:widgets/my_appbar.dart';
|
|
|
import 'package:widgets/my_load_image.dart';
|
|
|
import 'package:widgets/my_text_view.dart';
|
|
|
+import 'package:widgets/utils/dark_theme_util.dart';
|
|
|
|
|
|
import '../../../router/page/main_page_router.dart';
|
|
|
import 'feedback_detail_view_model.dart';
|
|
@@ -204,7 +205,12 @@ class FeedbackDetailPage extends HookConsumerWidget {
|
|
|
child: Column(
|
|
|
children: [
|
|
|
const SizedBox(height: 40),
|
|
|
- const MyAssetImage(Assets.mainFeedbackWaitingIcon, width: 38, height: 38),
|
|
|
+ MyAssetImage(
|
|
|
+ Assets.mainFeedbackWaitingIcon,
|
|
|
+ width: 38,
|
|
|
+ height: 38,
|
|
|
+ color: DarkThemeUtil.multiColors(context, AppColorsTheme.colorPrimary, darkColor: Colors.white),
|
|
|
+ ),
|
|
|
MyTextView(
|
|
|
S.current.waiting_for_the_administrator,
|
|
|
fontSize: 15,
|