mirror of
https://github.com/immich-app/immich.git
synced 2024-11-18 03:19:01 -07:00
2b5cef156c
* Add i18n framework to mobile app and write simple translation generator * Replace all texts in login_form with i18n keys * Localization of sharing section * Localization of asset viewer section * Use JSON as base translation format * Add check for missing/unused translation keys * Add localizely * Remove i18n directory in favour of localizely * Backup Translation * More translations * Translate home page * Translation of search page * Translate new server version announcement * Reformat code * Fix typo in german translation * Update englisch translations * Change translation keys to match dart filenames * Add /api to translated endpoint_urls * Update localizely.yml * Add languages to ios plist * Remove unused keys * Added script to check outdated key in other translations * Add download key to localizely.yml Co-authored-by: Alex <alex.tran1502@gmail.com>
82 lines
2.3 KiB
Dart
82 lines
2.3 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:immich_mobile/modules/home/ui/delete_diaglog.dart';
|
|
|
|
class ControlBottomAppBar extends StatelessWidget {
|
|
const ControlBottomAppBar({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Positioned(
|
|
bottom: 0,
|
|
left: 0,
|
|
child: Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
height: MediaQuery.of(context).size.height * 0.15,
|
|
decoration: BoxDecoration(
|
|
borderRadius: const BorderRadius.only(
|
|
topLeft: Radius.circular(15), topRight: Radius.circular(15)),
|
|
color: Colors.grey[300]?.withOpacity(0.98),
|
|
),
|
|
child: Column(
|
|
children: [
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 10, horizontal: 20),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
ControlBoxButton(
|
|
iconData: Icons.delete_forever_rounded,
|
|
label: "control_bottom_app_bar_delete".tr(),
|
|
onPressed: () {
|
|
showDialog(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return const DeleteDialog();
|
|
},
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ControlBoxButton extends StatelessWidget {
|
|
const ControlBoxButton(
|
|
{Key? key,
|
|
required this.label,
|
|
required this.iconData,
|
|
required this.onPressed})
|
|
: super(key: key);
|
|
|
|
final String label;
|
|
final IconData iconData;
|
|
final Function onPressed;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
width: 60,
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
IconButton(
|
|
onPressed: () {
|
|
onPressed();
|
|
},
|
|
icon: Icon(iconData, size: 30),
|
|
),
|
|
Text(label)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|