mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
0eacdf93eb
* feat(mobile): add support for material themes Added support for custom theming and updated all elements accordingly. * fix(mobile): Restored immich brand colors to default theme * fix(mobile): make ListTile titles bold in settings main page * feat(mobile): update bottom nav and appbar colors * small tweaks --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
93 lines
3 KiB
Dart
93 lines
3 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/providers/album/album_viewer.provider.dart';
|
|
import 'package:immich_mobile/entities/album.entity.dart';
|
|
|
|
class AlbumViewerEditableTitle extends HookConsumerWidget {
|
|
final Album album;
|
|
final FocusNode titleFocusNode;
|
|
const AlbumViewerEditableTitle({
|
|
super.key,
|
|
required this.album,
|
|
required this.titleFocusNode,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final titleTextEditController = useTextEditingController(text: album.name);
|
|
|
|
void onFocusModeChange() {
|
|
if (!titleFocusNode.hasFocus && titleTextEditController.text.isEmpty) {
|
|
ref.watch(albumViewerProvider.notifier).setEditTitleText("Untitled");
|
|
titleTextEditController.text = "Untitled";
|
|
}
|
|
}
|
|
|
|
useEffect(
|
|
() {
|
|
titleFocusNode.addListener(onFocusModeChange);
|
|
return () {
|
|
titleFocusNode.removeListener(onFocusModeChange);
|
|
};
|
|
},
|
|
[],
|
|
);
|
|
|
|
return Material(
|
|
color: Colors.transparent,
|
|
child: TextField(
|
|
onChanged: (value) {
|
|
if (value.isEmpty) {
|
|
} else {
|
|
ref.watch(albumViewerProvider.notifier).setEditTitleText(value);
|
|
}
|
|
},
|
|
focusNode: titleFocusNode,
|
|
style: context.textTheme.headlineMedium,
|
|
controller: titleTextEditController,
|
|
onTap: () {
|
|
FocusScope.of(context).requestFocus(titleFocusNode);
|
|
|
|
ref.watch(albumViewerProvider.notifier).setEditTitleText(album.name);
|
|
ref.watch(albumViewerProvider.notifier).enableEditAlbum();
|
|
|
|
if (titleTextEditController.text == 'Untitled') {
|
|
titleTextEditController.clear();
|
|
}
|
|
},
|
|
decoration: InputDecoration(
|
|
contentPadding:
|
|
const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
|
suffixIcon: titleFocusNode.hasFocus
|
|
? IconButton(
|
|
onPressed: () {
|
|
titleTextEditController.clear();
|
|
},
|
|
icon: Icon(
|
|
Icons.cancel_rounded,
|
|
color: context.primaryColor,
|
|
),
|
|
splashRadius: 10,
|
|
)
|
|
: null,
|
|
enabledBorder: const OutlineInputBorder(
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
),
|
|
focusedBorder: const OutlineInputBorder(
|
|
borderSide: BorderSide(color: Colors.transparent),
|
|
),
|
|
focusColor: Colors.grey[300],
|
|
fillColor: context.scaffoldBackgroundColor,
|
|
filled: titleFocusNode.hasFocus,
|
|
hintText: 'share_add_title'.tr(),
|
|
hintStyle: context.themeData.inputDecorationTheme.hintStyle?.copyWith(
|
|
fontSize: 28,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|