ente/lib/ui/gallery_footer_widget.dart
2021-10-06 16:47:26 +05:30

69 lines
2.2 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:photo_manager/photo_manager.dart';
import 'package:photos/services/local_sync_service.dart';
import 'package:photos/ui/backup_folder_selection_page.dart';
import 'package:photos/utils/navigation_util.dart';
class GalleryFooterWidget extends StatelessWidget {
const GalleryFooterWidget({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(
children: [
Padding(padding: EdgeInsets.all(12)),
Divider(
height: 1,
color: Theme.of(context).buttonColor.withOpacity(0.4),
),
Container(
padding: EdgeInsets.fromLTRB(28, 36, 28, 46),
child: OutlinedButton(
style: OutlinedButton.styleFrom(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
padding: EdgeInsets.fromLTRB(50, 20, 50, 20),
side: BorderSide(
width: 2,
color: Theme.of(context).buttonColor.withOpacity(1),
),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: const [
Icon(
Icons.cloud_upload,
color: Colors.white,
),
Padding(padding: EdgeInsets.all(6)),
Text(
"preserve more",
style: TextStyle(
color: Colors.white,
),
),
],
),
onPressed: () async {
if (LocalSyncService.instance.hasGrantedLimitedPermissions()) {
await PhotoManager.presentLimited();
} else {
routeToPage(
context,
BackupFolderSelectionPage(
buttonText: "preserve",
),
);
}
},
),
),
],
);
}
}