Merge pull request 'Add 'Add Partnership' button to completion of documents pages' (#221) from add_Partnership_buton into main
Reviewed-on: https://repo.ravanertebat.com/TM/tm_app/pulls/221
This commit is contained in:
@@ -36,7 +36,25 @@ class CompletionOfDocumentsDesktopPage extends StatelessWidget {
|
|||||||
CompletionOfDocumentsStrings
|
CompletionOfDocumentsStrings
|
||||||
.completionOfDocuments,
|
.completionOfDocuments,
|
||||||
),
|
),
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
child: Container(
|
||||||
|
width: 130.0.w(),
|
||||||
|
height: 32.0.h(),
|
||||||
|
padding: EdgeInsets.symmetric(
|
||||||
|
horizontal: 8.0.w(),
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: AppColors.primary30,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
),
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: const Text(
|
||||||
|
' Add Partnership',
|
||||||
|
style: TextStyle(color: AppColors.primaryColor),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
SizedBox(height: 24.0.h()),
|
SizedBox(height: 24.0.h()),
|
||||||
|
|
||||||
_deadlineContainer(),
|
_deadlineContainer(),
|
||||||
|
|||||||
@@ -28,6 +28,24 @@ class CompletionOfDocumentsMobilePage extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
child: Container(
|
||||||
|
width: 130.0.w(),
|
||||||
|
height: 32.0.h(),
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 8.0.w()),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: AppColors.primary30,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
),
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: const Text(
|
||||||
|
' Add Partnership',
|
||||||
|
style: TextStyle(color: AppColors.primaryColor),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(height: 24.0.h()),
|
||||||
Container(
|
Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 24.0.h(),
|
height: 24.0.h(),
|
||||||
|
|||||||
@@ -43,6 +43,26 @@ class CompletionOfDocumentsTabletPage extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
|
Align(
|
||||||
|
alignment: Alignment.centerRight,
|
||||||
|
child: Container(
|
||||||
|
width: 130.0.w(),
|
||||||
|
height: 32.0.h(),
|
||||||
|
padding: EdgeInsets.symmetric(
|
||||||
|
horizontal: 8.0.w(),
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: AppColors.primary30,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
),
|
||||||
|
alignment: Alignment.center,
|
||||||
|
child: const Text(
|
||||||
|
' Add Partnership',
|
||||||
|
style: TextStyle(color: AppColors.primaryColor),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(height: 24.0.h()),
|
||||||
_deadlineContainer(),
|
_deadlineContainer(),
|
||||||
|
|
||||||
SizedBox(height: 16.0.h()),
|
SizedBox(height: 16.0.h()),
|
||||||
|
|||||||
@@ -170,6 +170,7 @@ class MeetingTimeSuccessfulRegisteredBottomSheet extends StatelessWidget {
|
|||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
height: 56.0.h(),
|
height: 56.0.h(),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
|
context.pop();
|
||||||
AppToast.success(
|
AppToast.success(
|
||||||
context,
|
context,
|
||||||
TenderDetailsStrings.meetingTimeSuccessfullySet,
|
TenderDetailsStrings.meetingTimeSuccessfullySet,
|
||||||
|
|||||||
Reference in New Issue
Block a user