Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-10-25 12:21:16 +08:00
parent b43840b636
commit e9dc154642
13 changed files with 423 additions and 408 deletions

View File

@@ -501,28 +501,24 @@ class _SavePanelState extends State<SavePanel> {
GestureDetector(
onTap: () => Utils.copyText(uri),
child: Container(
width: 100,
height: 100,
padding: const EdgeInsets.all(
width: 88,
height: 88,
margin: const EdgeInsets.all(
12,
),
child: Container(
color: Get.isDarkMode
? Colors.white
: theme
.colorScheme
.surface,
padding: const EdgeInsets.all(
3,
),
child: PrettyQrView.data(
data: uri,
decoration:
const PrettyQrDecoration(
shape:
PrettyQrSquaresSymbol(),
),
),
padding: const EdgeInsets.all(
3,
),
color: Get.isDarkMode
? Colors.white
: theme.colorScheme.surface,
child: PrettyQrView.data(
data: uri,
decoration:
const PrettyQrDecoration(
shape:
PrettyQrSquaresSymbol(),
),
),
),
),