mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 05:51:19 +00:00
137 lines
4.7 KiB
Dart
137 lines
4.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import "package:photos/generated/l10n.dart";
|
|
import 'package:photos/services/update_service.dart';
|
|
import 'package:photos/theme/ente_theme.dart';
|
|
import 'package:photos/ui/components/buttons/button_widget.dart';
|
|
import 'package:photos/ui/components/divider_widget.dart';
|
|
import 'package:photos/ui/components/models/button_type.dart';
|
|
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({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<ChangeLogPage> createState() => _ChangeLogPageState();
|
|
}
|
|
|
|
class _ChangeLogPageState extends State<ChangeLogPage> {
|
|
@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,
|
|
),
|
|
Container(
|
|
alignment: Alignment.centerLeft,
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16.0),
|
|
child: TitleBarTitleWidget(
|
|
title: S.of(context).whatsNew,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
height: 24,
|
|
),
|
|
Expanded(child: _getChangeLog(context)),
|
|
const DividerWidget(
|
|
dividerType: DividerType.solid,
|
|
),
|
|
SafeArea(
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(
|
|
left: 16.0,
|
|
right: 16,
|
|
top: 16,
|
|
bottom: 8,
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
ButtonWidget(
|
|
buttonType: ButtonType.trailingIconPrimary,
|
|
buttonSize: ButtonSize.large,
|
|
labelText: S.of(context).continueLabel,
|
|
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,
|
|
),
|
|
ButtonWidget(
|
|
buttonType: ButtonType.trailingIconSecondary,
|
|
buttonSize: ButtonSize.large,
|
|
labelText: S.of(context).rateTheApp,
|
|
icon: Icons.favorite_rounded,
|
|
iconColor: enteColorScheme.primary500,
|
|
onTap: () async {
|
|
await UpdateService.instance.launchReviewUrl();
|
|
},
|
|
),
|
|
const SizedBox(height: 8),
|
|
const SizedBox(height: 8),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _getChangeLog(BuildContext ctx) {
|
|
final scrollController = ScrollController();
|
|
final List<ChangeLogEntry> items = [];
|
|
items.addAll([
|
|
ChangeLogEntry(
|
|
'Discover',
|
|
'Looking for photos of your id cards, notes, or even memes? Go to the search tab and check out Discover. Based on our semantic search, it\'s a place to find photos that might be important for you.\n\nOnly available if you have enabled Machine Learning.',
|
|
),
|
|
ChangeLogEntry(
|
|
'Backup Status',
|
|
'We\'ve added a log of all the files that have been uploaded to Ente, including failures and queued.',
|
|
),
|
|
ChangeLogEntry(
|
|
'Magic Search Improvement',
|
|
'We have improved magic search to become much faster, so you don\'t have to wait to find what you\'re looking for.',
|
|
isFeature: false,
|
|
),
|
|
]);
|
|
|
|
return Container(
|
|
padding: const EdgeInsets.only(left: 16),
|
|
child: Scrollbar(
|
|
controller: scrollController,
|
|
thumbVisibility: true,
|
|
thickness: 2.0,
|
|
child: ListView.builder(
|
|
physics: const BouncingScrollPhysics(),
|
|
itemBuilder: (context, index) {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(right: 16.0),
|
|
child: ChangeLogEntryWidget(entry: items[index]),
|
|
);
|
|
},
|
|
itemCount: items.length,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|