This commit is contained in:
Pfeil, Scott Robert 2020-02-28 10:32:27 -05:00
parent 36e34e1726
commit f779478cc5
2 changed files with 2 additions and 2 deletions

View File

@ -1341,8 +1341,8 @@
0A7BAFA0232BE61800FB8E22 /* Checkbox.swift */,
31BE15C923D8924C00452370 /* CheckboxLabelModel.swift */,
0A7BAFA2232BE63400FB8E22 /* CheckboxLabel.swift */,
01004F2F22721C3800991ECC /* RadioButton.swift */,
011D95AE2407266E000E3791 /* RadioButtonModel.swift */,
01004F2F22721C3800991ECC /* RadioButton.swift */,
D28A838223CCBD3F00DFE4FC /* CircleProgressModel.swift */,
943784F3236B77BB006A1E82 /* GraphView.swift */,
943784F4236B77BB006A1E82 /* GraphViewAnimationHandler.swift */,

View File

@ -12,6 +12,6 @@ import Foundation
public class RadioButtonModel: MoleculeModelProtocol {
public static var identifier: String = "radioButton"
public var backgroundColor: Color?
public var state: Bool?
public var state: Bool = false
public var fieldKey: String?
}