🐛 Fix some issues

This commit is contained in:
LittleSheep 2025-03-28 00:54:51 +08:00
parent 7c2b8de931
commit 908f0cb59e

View File

@ -132,6 +132,7 @@ class _ChatScreenState extends State<ChatScreen> {
..onDone(() {
if (!mounted) return;
setState(() => _isBusy = false);
_fetchWhatsNew();
});
}
@ -167,7 +168,6 @@ class _ChatScreenState extends State<ChatScreen> {
void initState() {
super.initState();
_refreshChannels(withBoost: true);
_fetchWhatsNew();
}
void _onTapChannel(SnChannel channel) {
@ -291,13 +291,10 @@ class _ChatScreenState extends State<ChatScreen> {
body: Column(
children: [
LoadingIndicator(isActive: _isBusy),
if (_channels != null)
if (_channels != null && ResponsiveScaffold.getIsExpand(context))
Expanded(
child: RefreshIndicator(
onRefresh: () => Future.wait([
Future.sync(() => _refreshChannels()),
_fetchWhatsNew(),
]),
onRefresh: () => Future.sync(() => _refreshChannels()),
child: Builder(builder: (context) {
final scopeList = ListView(
key: const Key('realm-list-view'),
@ -462,6 +459,26 @@ class _ChatScreenState extends State<ChatScreen> {
);
}),
),
)
else if (_channels != null)
Expanded(
child: RefreshIndicator(
onRefresh: () => Future.sync(() => _refreshChannels()),
child: ListView(
key: const Key('chat-list-view'),
padding: EdgeInsets.zero,
children: [
...(_channels!.map((ele) {
return _ChatChannelEntry(
channel: ele,
unreadCount: _unreadCounts?[ele.id],
lastMessage: _lastMessages?[ele.id],
onTap: () => _onTapChannel(ele),
);
}))
],
),
),
),
],
),