ente/lib/ui/notification/update/change_log_page.dart

147 lines
4.7 KiB
Dart
Raw Normal View History

2023-02-17 11:49:24 +00:00
import "dart:io";
2022-11-09 08:06:10 +00:00
import 'package:flutter/material.dart';
import 'package:photos/services/update_service.dart';
2022-11-09 08:06:10 +00:00
import 'package:photos/theme/ente_theme.dart';
2022-12-17 04:59:15 +00:00
import 'package:photos/ui/components/button_widget.dart';
2022-11-09 09:45:56 +00:00
import 'package:photos/ui/components/divider_widget.dart';
2022-12-17 04:59:15 +00:00
import 'package:photos/ui/components/models/button_type.dart';
2022-11-09 08:06:10 +00:00
import 'package:photos/ui/components/title_bar_title_widget.dart';
import 'package:photos/ui/notification/update/change_log_entry.dart';
class ChangeLogPage extends StatefulWidget {
const ChangeLogPage({
Key? key,
}) : super(key: key);
@override
State<ChangeLogPage> createState() => _ChangeLogPageState();
}
class _ChangeLogPageState extends State<ChangeLogPage> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
final enteColorScheme = getEnteColorScheme(context);
return Scaffold(
appBar: null,
body: Container(
color: enteColorScheme.backgroundElevated,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const SizedBox(
height: 36,
),
2022-11-23 07:54:02 +00:00
Container(
alignment: Alignment.centerLeft,
child: const Padding(
padding: EdgeInsets.symmetric(horizontal: 16.0),
child: TitleBarTitleWidget(
title: "What's new",
2022-11-09 08:06:10 +00:00
),
),
),
2022-11-23 07:54:02 +00:00
const SizedBox(
height: 24,
),
2022-11-09 08:06:10 +00:00
Expanded(child: _getChangeLog()),
2022-11-09 09:45:56 +00:00
const DividerWidget(
dividerType: DividerType.solid,
),
2022-11-09 08:06:10 +00:00
SafeArea(
child: Padding(
2022-11-09 09:45:56 +00:00
padding: const EdgeInsets.only(
left: 16.0,
right: 16,
top: 16,
bottom: 8,
),
2022-11-09 08:06:10 +00:00
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
2022-12-17 04:59:15 +00:00
ButtonWidget(
buttonType: ButtonType.trailingIconPrimary,
buttonSize: ButtonSize.large,
labelText: "Continue",
icon: Icons.arrow_forward_outlined,
onTap: () async {
await UpdateService.instance.hideChangeLog();
if (mounted && Navigator.of(context).canPop()) {
Navigator.of(context).pop();
}
},
),
const SizedBox(
height: 8,
2022-11-09 08:06:10 +00:00
),
2022-12-17 04:59:15 +00:00
ButtonWidget(
buttonType: ButtonType.trailingIconSecondary,
buttonSize: ButtonSize.large,
labelText: "Rate the app",
icon: Icons.favorite_rounded,
iconColor: enteColorScheme.primary500,
onTap: () async {
await UpdateService.instance.launchReviewUrl();
2022-12-17 04:59:15 +00:00
},
2022-11-09 08:06:10 +00:00
),
const SizedBox(height: 8),
],
),
),
),
],
),
),
);
}
Widget _getChangeLog() {
final scrollController = ScrollController();
final List<ChangeLogEntry> items = [];
items.add(
ChangeLogEntry(
2023-02-17 11:49:24 +00:00
"Referrals ✨",
"You can now double your storage by referring your friends and family"
". Both you and your loved ones will get 10 GB of storage when "
"they upgrade to a paid plan.\n\nGo to Settings -> General -> "
"Referral to get started!",
2022-11-09 08:06:10 +00:00
),
);
2023-02-17 11:49:24 +00:00
if (Platform.isAndroid) {
items.add(
ChangeLogEntry(
"Pick Files",
"While sharing photos and videos through other apps, ente will now "
"be an option to pick files from. This means you can now easily"
" attach files backed up to ente.\n\nConsider this the first "
"step towards making ente your default gallery app!",
),
);
}
2022-11-09 08:06:10 +00:00
return Container(
padding: const EdgeInsets.only(left: 16),
child: Scrollbar(
controller: scrollController,
thumbVisibility: true,
thickness: 2.0,
child: ListView.builder(
2022-11-23 15:52:34 +00:00
physics: const BouncingScrollPhysics(),
2022-11-09 08:06:10 +00:00
itemBuilder: (context, index) {
return Padding(
padding: const EdgeInsets.only(right: 16.0),
child: ChangeLogEntryWidget(entry: items[index]),
);
},
itemCount: items.length,
),
),
);
}
}