nc-photos/app/lib/widget/changelog/changelog_662.dart
Ming Ming f554bc212a 66.2
2024-06-12 22:08:32 +08:00

27 lines
793 B
Dart

part of '../changelog.dart';
class _Changelog662 extends StatelessWidget {
const _Changelog662();
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_subSection("Changes"),
_bulletGroup(const Text("Fixed not being able to set a biometric app lock with password fallback")),
_bulletGroup(const Text("Updated Chinese (Simplified), Turkish")),
_sectionPadding(),
_subSection("Contributors"),
_bulletGroup(
const Text("Special thanks to the following contributors \u{1f44f}"),
[
const Text("aliyasiny65"),
const Text("老兄"),
],
),
],
);
}
}