bug fixes
This commit is contained in:
parent
6e8fe074da
commit
0c47465d2a
|
|
@ -56,7 +56,9 @@ class _DirectState extends State<Direct> {
|
||||||
backgroundColor: Theme.of(context).colorScheme.surface,
|
backgroundColor: Theme.of(context).colorScheme.surface,
|
||||||
appBarData: AppBarData(
|
appBarData: AppBarData(
|
||||||
hasBack: true,
|
hasBack: true,
|
||||||
subtitle: 'ارتباط با سردبیر',
|
subtitle: widget.pageData['type'] == null
|
||||||
|
? null
|
||||||
|
: 'ارتباط با سردبیر',
|
||||||
title: widget.pageData['type'] ?? 'پشتیبانی اپلیکیشن',
|
title: widget.pageData['type'] ?? 'پشتیبانی اپلیکیشن',
|
||||||
),
|
),
|
||||||
slivers: [
|
slivers: [
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ class _SearchFieldState extends State<SearchField> {
|
||||||
right: 12,
|
right: 12,
|
||||||
),
|
),
|
||||||
border: InputBorder.none,
|
border: InputBorder.none,
|
||||||
hintText: 'جستجو مطلب در ${widget.title}',
|
hintText: 'جستجو در ${widget.title}',
|
||||||
hintStyle: TextStyle(
|
hintStyle: TextStyle(
|
||||||
color: Theme.of(context).colorScheme.disabledText,
|
color: Theme.of(context).colorScheme.disabledText,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue