mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 08:38:18 +08:00
@@ -135,8 +135,12 @@ class _WhisperDetailPageState
|
||||
hidePanel();
|
||||
},
|
||||
behavior: HitTestBehavior.opaque,
|
||||
child: Obx(
|
||||
() => _buildBody(_whisperDetailController.loadingState.value),
|
||||
child: Align(
|
||||
alignment: Alignment.topCenter,
|
||||
child: Obx(
|
||||
() =>
|
||||
_buildBody(_whisperDetailController.loadingState.value),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
@@ -688,7 +688,7 @@ class ChatItem extends StatelessWidget {
|
||||
),
|
||||
padding: const EdgeInsets.all(12),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
SelectableText(
|
||||
content['title'],
|
||||
@@ -728,10 +728,7 @@ class ChatItem extends StatelessWidget {
|
||||
GestureDetector(
|
||||
behavior: HitTestBehavior.opaque,
|
||||
onTap: () => PiliScheme.routePushFromUrl(content['jump_uri']),
|
||||
child: SizedBox(
|
||||
width: double.infinity,
|
||||
child: Text(content['jump_text']),
|
||||
),
|
||||
child: Text(content['jump_text']),
|
||||
),
|
||||
],
|
||||
if ((content['jump_text_2'] as String?)?.isNotEmpty == true &&
|
||||
@@ -740,10 +737,7 @@ class ChatItem extends StatelessWidget {
|
||||
GestureDetector(
|
||||
behavior: HitTestBehavior.opaque,
|
||||
onTap: () => PiliScheme.routePushFromUrl(content['jump_uri_2']),
|
||||
child: SizedBox(
|
||||
width: double.infinity,
|
||||
child: Text(content['jump_text_2']),
|
||||
),
|
||||
child: Text(content['jump_text_2']),
|
||||
),
|
||||
],
|
||||
if ((content['jump_text_3'] as String?)?.isNotEmpty == true &&
|
||||
@@ -752,10 +746,7 @@ class ChatItem extends StatelessWidget {
|
||||
GestureDetector(
|
||||
behavior: HitTestBehavior.opaque,
|
||||
onTap: () => PiliScheme.routePushFromUrl(content['jump_uri_3']),
|
||||
child: SizedBox(
|
||||
width: double.infinity,
|
||||
child: Text(content['jump_text_3']),
|
||||
),
|
||||
child: Text(content['jump_text_3']),
|
||||
),
|
||||
],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user