Compare commits
2 Commits
998d0459ad
...
6d9bcc9ba1
Author | SHA1 | Date |
---|---|---|
John Maguire | 6d9bcc9ba1 | |
Ian VanSchooten | fcf21f6f6b |
|
@ -1,4 +1,5 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
|
||||||
/* <sys/kern_control.h> */
|
/* <sys/kern_control.h> */
|
||||||
#define CTLIOCGINFO 0xc0644e03UL
|
#define CTLIOCGINFO 0xc0644e03UL
|
||||||
|
|
|
@ -39,7 +39,7 @@ class _FormPageState extends State<FormPage> {
|
||||||
changed = widget.changed || changed;
|
changed = widget.changed || changed;
|
||||||
|
|
||||||
return PopScope<Object?>(
|
return PopScope<Object?>(
|
||||||
canPop: false,
|
canPop: !changed,
|
||||||
onPopInvokedWithResult: (bool didPop, Object? result) async {
|
onPopInvokedWithResult: (bool didPop, Object? result) async {
|
||||||
if (didPop) {
|
if (didPop) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
111MODULE = on
|
111MODULE = on
|
||||||
export GO111MODULE
|
export GO111MODULE
|
||||||
|
|
||||||
|
unexport SWIFT_DEBUG_INFORMATION_VERSION
|
||||||
|
unexport SWIFT_DEBUG_INFORMATION_FORMAT
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf mobileNebula.aar MobileNebula.xcframework
|
rm -rf mobileNebula.aar MobileNebula.xcframework
|
||||||
|
|
Loading…
Reference in New Issue