Add sqlite3 dependency

This commit is contained in:
2025-02-22 16:22:33 +08:00
parent 25dd895e0d
commit 338c22a606
18 changed files with 14669 additions and 8 deletions

View File

@ -243,7 +243,12 @@ class _ExploreScreenState extends State<ExploreScreen> with SingleTickerProvider
children: [
Icon(Symbols.globe, size: 20, color: Theme.of(context).appBarTheme.foregroundColor),
const Gap(8),
Text('postChannelGlobal').tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
Expanded(
child: Text(
'postChannelGlobal',
maxLines: 1,
).tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
),
],
),
),
@ -254,7 +259,12 @@ class _ExploreScreenState extends State<ExploreScreen> with SingleTickerProvider
children: [
Icon(Symbols.group, size: 20, color: Theme.of(context).appBarTheme.foregroundColor),
const Gap(8),
Text('postChannelFriends').tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
Expanded(
child: Text(
'postChannelFriends',
maxLines: 1,
).tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
),
],
),
),
@ -265,7 +275,12 @@ class _ExploreScreenState extends State<ExploreScreen> with SingleTickerProvider
children: [
Icon(Symbols.subscriptions, size: 20, color: Theme.of(context).appBarTheme.foregroundColor),
const Gap(8),
Text('postChannelFollowing').tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
Expanded(
child: Text(
'postChannelFollowing',
maxLines: 1,
).tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
),
],
),
),
@ -276,7 +291,12 @@ class _ExploreScreenState extends State<ExploreScreen> with SingleTickerProvider
children: [
Icon(Symbols.workspaces, size: 20, color: Theme.of(context).appBarTheme.foregroundColor),
const Gap(8),
Text('postChannelRealm').tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
Expanded(
child: Text(
'postChannelRealm',
maxLines: 1,
).tr().textColor(Theme.of(context).appBarTheme.foregroundColor),
),
],
),
),