mirror of
https://github.com/immich-app/immich.git
synced 2025-01-22 11:42:46 +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>
78 lines
2.6 KiB
Dart
78 lines
2.6 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
import 'package:immich_mobile/providers/album/album_title.provider.dart';
|
|
|
|
class AlbumTitleTextField extends ConsumerWidget {
|
|
const AlbumTitleTextField({
|
|
super.key,
|
|
required this.isAlbumTitleEmpty,
|
|
required this.albumTitleTextFieldFocusNode,
|
|
required this.albumTitleController,
|
|
required this.isAlbumTitleTextFieldFocus,
|
|
});
|
|
|
|
final ValueNotifier<bool> isAlbumTitleEmpty;
|
|
final FocusNode albumTitleTextFieldFocusNode;
|
|
final TextEditingController albumTitleController;
|
|
final ValueNotifier<bool> isAlbumTitleTextFieldFocus;
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return TextField(
|
|
onChanged: (v) {
|
|
if (v.isEmpty) {
|
|
isAlbumTitleEmpty.value = true;
|
|
} else {
|
|
isAlbumTitleEmpty.value = false;
|
|
}
|
|
|
|
ref.watch(albumTitleProvider.notifier).setAlbumTitle(v);
|
|
},
|
|
focusNode: albumTitleTextFieldFocusNode,
|
|
style: TextStyle(
|
|
fontSize: 28,
|
|
color: context.colorScheme.onSurface,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
controller: albumTitleController,
|
|
onTap: () {
|
|
isAlbumTitleTextFieldFocus.value = true;
|
|
|
|
if (albumTitleController.text == 'Untitled') {
|
|
albumTitleController.clear();
|
|
}
|
|
},
|
|
decoration: InputDecoration(
|
|
contentPadding: const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
|
|
suffixIcon: !isAlbumTitleEmpty.value && isAlbumTitleTextFieldFocus.value
|
|
? IconButton(
|
|
onPressed: () {
|
|
albumTitleController.clear();
|
|
isAlbumTitleEmpty.value = true;
|
|
},
|
|
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),
|
|
),
|
|
hintText: 'share_add_title'.tr(),
|
|
hintStyle: context.themeData.inputDecorationTheme.hintStyle?.copyWith(
|
|
fontSize: 28,
|
|
),
|
|
focusColor: Colors.grey[300],
|
|
fillColor: context.scaffoldBackgroundColor,
|
|
filled: isAlbumTitleTextFieldFocus.value,
|
|
),
|
|
);
|
|
}
|
|
}
|