mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
new: pve (#307)
This commit is contained in:
@@ -223,22 +223,22 @@ class BackupPage extends StatelessWidget {
|
||||
|
||||
Widget _buildBulkImportServers(BuildContext context) {
|
||||
return CardX(
|
||||
child: ListTile(
|
||||
title: Text(l10n.bulkImportServers),
|
||||
subtitle: MarkdownBody(
|
||||
data: l10n.bulkImportServersTip(Urls.appWiki),
|
||||
styleSheet: MarkdownStyleSheet(
|
||||
child: ListTile(
|
||||
title: Text(l10n.bulkImportServers),
|
||||
subtitle: MarkdownBody(
|
||||
data: l10n.bulkImportServersTip(Urls.appWiki),
|
||||
styleSheet: MarkdownStyleSheet(
|
||||
p: UIs.textGrey,
|
||||
a: TextStyle(
|
||||
color: primaryColor,
|
||||
)),
|
||||
onTapLink: (text, href, title) {
|
||||
if (href != null) openUrl(href);
|
||||
},
|
||||
a: TextStyle(color: primaryColor),
|
||||
),
|
||||
onTapLink: (text, href, title) {
|
||||
if (href != null) openUrl(href);
|
||||
},
|
||||
),
|
||||
leading: const Icon(Icons.import_export),
|
||||
onTap: () => _onBulkImportServers(context),
|
||||
),
|
||||
trailing: const Icon(Icons.import_export),
|
||||
onTap: () => _onBulkImportServers(context),
|
||||
));
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> _onTapFileRestore(BuildContext context) async {
|
||||
|
||||
Reference in New Issue
Block a user