feat: Guide UI

This commit is contained in:
2024-11-03 18:32:12 +08:00
parent 0577b54f9c
commit 8a58719908
21 changed files with 555 additions and 37 deletions

View File

@ -99,6 +99,23 @@ class AboutUI extends HookConsumerWidget {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
IconButton(
icon: Row(
children: [
const Icon(FontAwesomeIcons.question),
const SizedBox(width: 8),
Text(
S.current.about_action_btn_faq,
style: TextStyle(
fontSize: 14, color: Colors.white.withOpacity(.6)),
),
],
),
onPressed: () {
launchUrlString(URLConf.feedbackFAQUrl);
},
),
const SizedBox(width: 24),
IconButton(
icon: Row(
children: [
@ -262,4 +279,4 @@ class AboutUI extends HookConsumerWidget {
}
}
}
}
}