💄 Hint on dashboard

This commit is contained in:
LittleSheep 2024-09-02 23:15:24 +08:00
parent 4e4e551e2f
commit cab2217793

View File

@ -28,6 +28,9 @@ class _DashboardScreenState extends State<DashboardScreen> {
late final PostProvider _posts = Get.find();
late final DailySignProvider _dailySign = Get.find();
Color get _unFocusColor =>
Theme.of(context).colorScheme.onSurface.withOpacity(0.75);
List<Post>? _currentPosts;
Future<void> _pullPosts() async {
@ -293,6 +296,20 @@ class _DashboardScreenState extends State<DashboardScreen> {
)
],
),
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
'Powered by Solar Network',
style: TextStyle(color: _unFocusColor, fontSize: 12),
),
Text(
'占卜多少都是玩,人生还得靠自己',
style:
GoogleFonts.notoSerifHk(color: _unFocusColor, fontSize: 12),
)
],
).paddingAll(8),
],
);
}