ente/lib/ui/grant_permissions_widget.dart

122 lines
4.1 KiB
Dart
Raw Normal View History

2021-07-01 12:33:02 +00:00
import 'dart:io';
2021-03-12 08:40:36 +00:00
import 'package:flutter/material.dart';
import 'package:photo_manager/photo_manager.dart';
import 'package:photos/services/sync_service.dart';
2021-05-12 15:23:22 +00:00
import 'package:photos/ui/common_elements.dart';
2021-05-09 18:44:05 +00:00
2021-05-29 17:01:59 +00:00
class GrantPermissionsWidget extends StatelessWidget {
2021-03-12 08:40:36 +00:00
@override
Widget build(BuildContext context) {
return Center(
2021-07-05 08:32:07 +00:00
child: SingleChildScrollView(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Image.asset(
"assets/gallery.png",
height: 160,
),
Padding(padding: EdgeInsets.all(24)),
Text.rich(
TextSpan(
children: <TextSpan>[
TextSpan(
text: "ente",
style: TextStyle(
fontWeight: FontWeight.bold,
fontFamily: 'Montserrat',
fontSize: 16,
),
2021-05-12 15:23:22 +00:00
),
2021-07-05 08:32:07 +00:00
TextSpan(
text: " needs your permission",
style: TextStyle(
fontSize: 16,
),
2021-05-12 15:23:22 +00:00
),
2021-07-05 08:32:07 +00:00
],
),
textAlign: TextAlign.center,
),
Padding(padding: EdgeInsets.all(2)),
Text(
"to access your gallery",
style: TextStyle(fontSize: 16),
2021-03-12 08:40:36 +00:00
),
2021-07-05 08:32:07 +00:00
Padding(padding: const EdgeInsets.all(24)),
Container(
width: double.infinity,
padding: const EdgeInsets.fromLTRB(64, 0, 64, 0),
child: button(
"grant permission",
fontSize: 16,
onPressed: () async {
final state = await PhotoManager.requestPermissionExtend();
if (state == PermissionState.authorized ||
state == PermissionState.limited) {
await SyncService.instance.onPermissionGranted(state);
} else if (state == PermissionState.denied) {
AlertDialog alert = AlertDialog(
title: Text("please grant permissions"),
content: Text(
"ente can encrypt and preserve files only if you grant access to them"),
actions: [
TextButton(
child: Text(
"ok",
style: TextStyle(
color: Theme.of(context).buttonColor,
),
),
2021-07-05 08:32:07 +00:00
onPressed: () {
Navigator.of(context, rootNavigator: true)
.pop('dialog');
if (Platform.isIOS) {
PhotoManager.openSetting();
}
},
),
2021-07-05 08:32:07 +00:00
],
);
2021-07-05 08:32:07 +00:00
showDialog(
context: context,
builder: (BuildContext context) {
return alert;
},
barrierColor: Colors.black87,
);
}
},
),
2021-05-12 15:23:22 +00:00
),
2021-07-05 08:32:07 +00:00
Padding(padding: const EdgeInsets.all(50)),
Text(
"we value your privacy",
style: TextStyle(
color: Colors.white30,
),
2021-05-12 15:23:22 +00:00
),
2021-07-05 08:32:07 +00:00
Padding(padding: const EdgeInsets.all(12)),
Text(
2021-07-09 08:58:07 +00:00
"the files you choose to back up",
2021-07-05 08:32:07 +00:00
style: TextStyle(
color: Colors.white30,
),
2021-05-12 15:23:22 +00:00
),
2021-07-05 08:32:07 +00:00
Padding(padding: const EdgeInsets.all(2)),
Text(
"will be end-to-end encrypted",
style: TextStyle(
color: Colors.white30,
),
2021-03-12 08:40:36 +00:00
),
2021-07-05 08:32:07 +00:00
],
),
2021-03-12 08:40:36 +00:00
),
);
}
}