changed safe areas and filter string
This commit is contained in:
@@ -35,11 +35,11 @@ class _YourTendersMobilePageState extends State<YourTendersMobilePage> {
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
backgroundColor: AppColors.backgroundColor,
|
||||
appBar: appBar(context: context, title: YourTendersStrings.yourTenders),
|
||||
body: SafeArea(
|
||||
child: Column(
|
||||
return SafeArea(
|
||||
child: Scaffold(
|
||||
backgroundColor: AppColors.backgroundColor,
|
||||
appBar: appBar(context: context, title: YourTendersStrings.yourTenders),
|
||||
body: Column(
|
||||
children: [
|
||||
const FilterButton(platformType: PlatformType.mobile),
|
||||
Expanded(
|
||||
@@ -55,11 +55,11 @@ class _YourTendersMobilePageState extends State<YourTendersMobilePage> {
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
if (viewModel.errorMessage != null) {
|
||||
return Center(child: Text(viewModel.errorMessage!));
|
||||
}
|
||||
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
if (viewModel.selectedStatus ==
|
||||
|
||||
Reference in New Issue
Block a user