🐛 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(() { ..onDone(() {
if (!mounted) return; if (!mounted) return;
setState(() => _isBusy = false); setState(() => _isBusy = false);
_fetchWhatsNew();
}); });
} }
@ -167,7 +168,6 @@ class _ChatScreenState extends State<ChatScreen> {
void initState() { void initState() {
super.initState(); super.initState();
_refreshChannels(withBoost: true); _refreshChannels(withBoost: true);
_fetchWhatsNew();
} }
void _onTapChannel(SnChannel channel) { void _onTapChannel(SnChannel channel) {
@ -291,13 +291,10 @@ class _ChatScreenState extends State<ChatScreen> {
body: Column( body: Column(
children: [ children: [
LoadingIndicator(isActive: _isBusy), LoadingIndicator(isActive: _isBusy),
if (_channels != null) if (_channels != null && ResponsiveScaffold.getIsExpand(context))
Expanded( Expanded(
child: RefreshIndicator( child: RefreshIndicator(
onRefresh: () => Future.wait([ onRefresh: () => Future.sync(() => _refreshChannels()),
Future.sync(() => _refreshChannels()),
_fetchWhatsNew(),
]),
child: Builder(builder: (context) { child: Builder(builder: (context) {
final scopeList = ListView( final scopeList = ListView(
key: const Key('realm-list-view'), 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),
);
}))
],
),
),
), ),
], ],
), ),