mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-14 12:06:24 +00:00
Fix barcode widget to prevent flutter widget error
This commit is contained in:
parent
90df4c6135
commit
feaafe068d
1 changed files with 15 additions and 12 deletions
|
|
@ -436,8 +436,9 @@ class _QRViewState extends State<InvenTreeQRView> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
body: Stack(
|
body: Stack(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
|
Column(
|
||||||
|
children: [
|
||||||
Expanded(
|
Expanded(
|
||||||
flex: 4,
|
|
||||||
child: QRView(
|
child: QRView(
|
||||||
key: qrKey,
|
key: qrKey,
|
||||||
onQRViewCreated: _onViewCreated,
|
onQRViewCreated: _onViewCreated,
|
||||||
|
|
@ -449,6 +450,8 @@ class _QRViewState extends State<InvenTreeQRView> {
|
||||||
cutOutSize: 300,
|
cutOutSize: 300,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
]
|
||||||
),
|
),
|
||||||
Center(
|
Center(
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue