mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
feat: pure black theme
Closes #254 Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
@@ -31,9 +31,11 @@ class SearchText extends StatelessWidget {
|
||||
onTap: () {
|
||||
onTap?.call(text);
|
||||
},
|
||||
onLongPress: () {
|
||||
onLongPress?.call(text);
|
||||
},
|
||||
onLongPress: onLongPress != null
|
||||
? () {
|
||||
onLongPress!(text);
|
||||
}
|
||||
: null,
|
||||
borderRadius: BorderRadius.circular(6),
|
||||
child: Padding(
|
||||
padding: padding ??
|
||||
|
||||
Reference in New Issue
Block a user