mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-30 15:30:17 +08:00
@@ -25,7 +25,11 @@ List<SettingsModel> get privacySettings => [
|
||||
context: context,
|
||||
builder: (context) => AlertDialog(
|
||||
title: const Text('账号模式详情'),
|
||||
content: SingleChildScrollView(child: _getAccountDetail(context)),
|
||||
content: SelectionArea(
|
||||
child: SingleChildScrollView(
|
||||
child: _getAccountDetail(context),
|
||||
),
|
||||
),
|
||||
actions: [
|
||||
TextButton(
|
||||
onPressed: Get.back,
|
||||
@@ -52,12 +56,10 @@ Widget _getAccountDetail(BuildContext context) {
|
||||
..add(Center(child: Text(i.title, style: theme.titleMedium)))
|
||||
..add(Text(url.join('\n')));
|
||||
}
|
||||
return SelectionArea(
|
||||
child: Column(
|
||||
mainAxisSize: .min,
|
||||
crossAxisAlignment: .start,
|
||||
spacing: 8,
|
||||
children: children,
|
||||
),
|
||||
return Column(
|
||||
spacing: 8,
|
||||
mainAxisSize: .min,
|
||||
crossAxisAlignment: .start,
|
||||
children: children,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user