Fix bug beaconId null
This commit is contained in:
parent
5fadf3943f
commit
9de38c2cfc
@ -184,7 +184,7 @@ class _SectionDetailScreenState extends State<SectionDetailScreen> {
|
||||
if(sectionDTO.isBeacon!)
|
||||
NumberInputContainer(
|
||||
label: "Identifiant Beacon :",
|
||||
initialValue: sectionDTO != null ? sectionDTO.beaconId! : 0,
|
||||
initialValue: sectionDTO.beaconId != null ? sectionDTO.beaconId! : 0,
|
||||
isSmall: true,
|
||||
onChanged: (value) {
|
||||
try {
|
||||
|
||||
@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||
version: 1.0.0+1
|
||||
|
||||
environment:
|
||||
sdk: ">=2.16.2 <3.0.1"
|
||||
sdk: ">=2.16.2 <3.2.0"
|
||||
|
||||
dependencies:
|
||||
flutter:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user