Updated pages
This commit is contained in:
parent
b1024daa59
commit
f4ab256fa0
4 changed files with 177 additions and 94 deletions
|
|
@ -113,7 +113,7 @@ class _BarcodeScannerScreenState extends State<BarcodeScannerScreen> {
|
|||
resizeToAvoidBottomInset: false,
|
||||
body: Container(
|
||||
alignment: Alignment.center,
|
||||
height: MediaQuery.of(context).size.height,
|
||||
height: MediaQuery.of(context).size.height * 1.2,
|
||||
decoration: const BoxDecoration(
|
||||
gradient: LinearGradient(
|
||||
begin: Alignment.topCenter,
|
||||
|
|
@ -187,12 +187,12 @@ class _BarcodeScannerScreenState extends State<BarcodeScannerScreen> {
|
|||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width - 160,
|
||||
padding: const EdgeInsets.fromLTRB(8, 16, 8, 26),
|
||||
width: 220,
|
||||
padding: const EdgeInsets.fromLTRB(0, 16, 0, 32),
|
||||
decoration: BoxDecoration(
|
||||
border: BoxBorder.all(color: redColor),
|
||||
color: redColorShade,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
borderRadius: BorderRadius.circular(32),
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
|
|
@ -220,12 +220,12 @@ class _BarcodeScannerScreenState extends State<BarcodeScannerScreen> {
|
|||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width - 160,
|
||||
padding: const EdgeInsets.fromLTRB(8, 16, 8, 26),
|
||||
width: 220,
|
||||
padding: const EdgeInsets.fromLTRB(0, 16, 0, 32),
|
||||
decoration: BoxDecoration(
|
||||
border: BoxBorder.all(color: redColor),
|
||||
color: redColorShade,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
borderRadius: BorderRadius.circular(32),
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
|
|
@ -252,12 +252,13 @@ class _BarcodeScannerScreenState extends State<BarcodeScannerScreen> {
|
|||
Column(
|
||||
children: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width - 160,
|
||||
padding: const EdgeInsets.fromLTRB(8, 16, 8, 26),
|
||||
// width: MediaQuery.of(context).size.width - 160,
|
||||
width: 220,
|
||||
padding: const EdgeInsets.fromLTRB(0, 16, 0, 32),
|
||||
decoration: BoxDecoration(
|
||||
border: BoxBorder.all(color: greenColor),
|
||||
color: greenColorShade,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
borderRadius: BorderRadius.circular(32),
|
||||
),
|
||||
child: Column(
|
||||
children: [
|
||||
|
|
@ -280,7 +281,7 @@ class _BarcodeScannerScreenState extends State<BarcodeScannerScreen> {
|
|||
const Gap(24),
|
||||
TextWidget(text: qrResult, bold: true, size: 20, color: greenColor),
|
||||
const Gap(24),
|
||||
ButtonWidget(text: "Show Details", disabled: false, onPressed: gotoDetails),
|
||||
ButtonWidget(text: "Check Signed Applications", disabled: false, onPressed: gotoDetails),
|
||||
],
|
||||
),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue