fix pos optModal
This commit is contained in:
parent
4fc2f13f25
commit
66ed0105a0
|
@ -44,8 +44,8 @@
|
||||||
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
||||||
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||||
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
||||||
6436409527A31CD700820AF7 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
6436409E27A31CD500820AF7 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||||
6436409A27A31CD400820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
6436409227A31CD500820AF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||||
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||||
/* End PBXFileReference section */
|
/* End PBXFileReference section */
|
||||||
|
|
||||||
|
@ -225,8 +225,8 @@
|
||||||
6436409C27A31CD800820AF7 /* InfoPlist.strings */ = {
|
6436409C27A31CD800820AF7 /* InfoPlist.strings */ = {
|
||||||
isa = PBXVariantGroup;
|
isa = PBXVariantGroup;
|
||||||
children = (
|
children = (
|
||||||
6436409527A31CD700820AF7 /* pt */,
|
6436409E27A31CD500820AF7 /* pt */,
|
||||||
6436409A27A31CD400820AF7 /* en */,
|
6436409227A31CD500820AF7 /* en */,
|
||||||
);
|
);
|
||||||
name = InfoPlist.strings;
|
name = InfoPlist.strings;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
|
|
@ -44,265 +44,277 @@ class _OptModalWidgetState extends State<OptModalWidget> {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Align(
|
return Align(
|
||||||
alignment: const AlignmentDirectional(1.0, -1.0),
|
alignment: const AlignmentDirectional(1.0, -1.0),
|
||||||
child: Container(
|
child: Padding(
|
||||||
width: 300.0,
|
padding: const EdgeInsetsDirectional.fromSTEB(0.0, 50.0, 20.0, 0.0),
|
||||||
height: 400.0,
|
child: Container(
|
||||||
decoration: BoxDecoration(
|
width: 300.0,
|
||||||
color: FlutterFlowTheme.of(context).primaryBackground,
|
height: 400.0,
|
||||||
borderRadius: BorderRadius.circular(24.0),
|
decoration: BoxDecoration(
|
||||||
),
|
color: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
child: Padding(
|
borderRadius: BorderRadius.circular(24.0),
|
||||||
padding: const EdgeInsets.all(4.0),
|
),
|
||||||
child: Column(
|
child: Padding(
|
||||||
mainAxisSize: MainAxisSize.max,
|
padding: const EdgeInsets.all(4.0),
|
||||||
children: [
|
child: Column(
|
||||||
Row(
|
mainAxisSize: MainAxisSize.max,
|
||||||
mainAxisSize: MainAxisSize.max,
|
children: [
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
Row(
|
||||||
children: [
|
mainAxisSize: MainAxisSize.max,
|
||||||
Padding(
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
padding:
|
children: [
|
||||||
const EdgeInsetsDirectional.fromSTEB(0.0, 10.0, 0.0, 0.0),
|
Padding(
|
||||||
child: Icon(
|
padding:
|
||||||
Icons.filter_list,
|
const EdgeInsetsDirectional.fromSTEB(0.0, 10.0, 0.0, 0.0),
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
child: Icon(
|
||||||
size: 24.0,
|
Icons.filter_list,
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(8.0, 0.0, 8.0, 0.0),
|
|
||||||
child: TextFormField(
|
|
||||||
controller: _model.textController,
|
|
||||||
focusNode: _model.textFieldFocusNode,
|
|
||||||
autofocus: true,
|
|
||||||
obscureText: false,
|
|
||||||
decoration: InputDecoration(
|
|
||||||
isDense: true,
|
|
||||||
labelText: FFLocalizations.of(context).getText(
|
|
||||||
'0enrtljz' /* Pesquise aqui..... */,
|
|
||||||
),
|
|
||||||
labelStyle: FlutterFlowTheme.of(context)
|
|
||||||
.labelMedium
|
|
||||||
.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily),
|
|
||||||
),
|
|
||||||
hintStyle: FlutterFlowTheme.of(context)
|
|
||||||
.labelMedium
|
|
||||||
.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily),
|
|
||||||
),
|
|
||||||
enabledBorder: UnderlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).alternate,
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
|
||||||
),
|
|
||||||
focusedBorder: UnderlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
width: 2.0,
|
size: 24.0,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
|
||||||
),
|
),
|
||||||
errorBorder: UnderlineInputBorder(
|
],
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).error,
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
|
||||||
),
|
|
||||||
focusedErrorBorder: UnderlineInputBorder(
|
|
||||||
borderSide: BorderSide(
|
|
||||||
color: FlutterFlowTheme.of(context).error,
|
|
||||||
width: 2.0,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
|
||||||
),
|
|
||||||
filled: true,
|
|
||||||
fillColor: FlutterFlowTheme.of(context).alternate,
|
|
||||||
suffixIcon: const Icon(
|
|
||||||
Icons.search_outlined,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
|
||||||
),
|
|
||||||
validator:
|
|
||||||
_model.textControllerValidator.asValidator(context),
|
|
||||||
),
|
),
|
||||||
),
|
Padding(
|
||||||
Column(
|
padding: const EdgeInsetsDirectional.fromSTEB(8.0, 0.0, 8.0, 0.0),
|
||||||
mainAxisSize: MainAxisSize.max,
|
child: TextFormField(
|
||||||
children: [
|
controller: _model.textController,
|
||||||
Row(
|
focusNode: _model.textFieldFocusNode,
|
||||||
mainAxisSize: MainAxisSize.max,
|
autofocus: true,
|
||||||
children: [
|
obscureText: false,
|
||||||
Text(
|
decoration: InputDecoration(
|
||||||
FFLocalizations.of(context).getText(
|
isDense: true,
|
||||||
'l7tw8b92' /* Tipo de Pessoa */,
|
labelText: FFLocalizations.of(context).getText(
|
||||||
|
'0enrtljz' /* Pesquise aqui..... */,
|
||||||
|
),
|
||||||
|
labelStyle: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
|
),
|
||||||
|
hintStyle: FlutterFlowTheme.of(context)
|
||||||
|
.labelMedium
|
||||||
|
.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
|
),
|
||||||
|
enabledBorder: UnderlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).alternate,
|
||||||
|
width: 2.0,
|
||||||
),
|
),
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
].addToStart(const SizedBox(width: 24.0)),
|
focusedBorder: UnderlineInputBorder(
|
||||||
),
|
borderSide: BorderSide(
|
||||||
FlutterFlowCheckboxGroup(
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
options: [
|
width: 2.0,
|
||||||
FFLocalizations.of(context).getText(
|
),
|
||||||
'zok7lu4w' /* Visitante */,
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
|
),
|
||||||
|
errorBorder: UnderlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 2.0,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
|
),
|
||||||
|
focusedErrorBorder: UnderlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context).error,
|
||||||
|
width: 2.0,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
|
),
|
||||||
|
filled: true,
|
||||||
|
fillColor: FlutterFlowTheme.of(context).alternate,
|
||||||
|
suffixIcon: const Icon(
|
||||||
|
Icons.search_outlined,
|
||||||
),
|
),
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'oonqk812' /* Morador */,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
onChanged: (val) =>
|
|
||||||
setState(() => _model.checkboxGroupValues1 = val),
|
|
||||||
controller: _model.checkboxGroupValueController1 ??=
|
|
||||||
FormFieldController<List<String>>(
|
|
||||||
List.from([
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'yfj9pd6k' /* Visitante */,
|
|
||||||
),
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'svfcf5xs' /* Morador */,
|
|
||||||
)
|
|
||||||
] ??
|
|
||||||
[]),
|
|
||||||
),
|
),
|
||||||
activeColor: FlutterFlowTheme.of(context).primary,
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
checkColor: FlutterFlowTheme.of(context).info,
|
|
||||||
checkboxBorderColor:
|
|
||||||
FlutterFlowTheme.of(context).secondaryText,
|
|
||||||
textStyle: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily:
|
fontFamily:
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
),
|
),
|
||||||
checkboxBorderRadius: BorderRadius.circular(6.0),
|
validator:
|
||||||
initialized: _model.checkboxGroupValues1 != null,
|
_model.textControllerValidator.asValidator(context),
|
||||||
),
|
),
|
||||||
]
|
),
|
||||||
.addToStart(const SizedBox(height: 10.0))
|
Column(
|
||||||
.addToEnd(const SizedBox(height: 10.0)),
|
mainAxisSize: MainAxisSize.max,
|
||||||
),
|
children: [
|
||||||
Column(
|
Row(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Text(
|
||||||
mainAxisSize: MainAxisSize.max,
|
FFLocalizations.of(context).getText(
|
||||||
children: [
|
'l7tw8b92' /* Tipo de Pessoa */,
|
||||||
Text(
|
),
|
||||||
FFLocalizations.of(context).getText(
|
style: FlutterFlowTheme.of(context)
|
||||||
'pepv7gl9' /* Tipo de Acesso */,
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMediumFamily,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context)
|
||||||
|
.bodyMediumFamily),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
].addToStart(const SizedBox(width: 24.0)),
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
].addToStart(const SizedBox(width: 24.0)),
|
|
||||||
),
|
|
||||||
FlutterFlowCheckboxGroup(
|
|
||||||
options: [
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'580z80ct' /* Entrada */,
|
|
||||||
),
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'1nbwqtzs' /* Saida */,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
onChanged: (val) =>
|
|
||||||
setState(() => _model.checkboxGroupValues2 = val),
|
|
||||||
controller: _model.checkboxGroupValueController2 ??=
|
|
||||||
FormFieldController<List<String>>(
|
|
||||||
List.from([
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'5zn9x69v' /* Entrada */,
|
|
||||||
),
|
|
||||||
FFLocalizations.of(context).getText(
|
|
||||||
'8uf522zq' /* Saida */,
|
|
||||||
)
|
|
||||||
] ??
|
|
||||||
[]),
|
|
||||||
),
|
),
|
||||||
activeColor: FlutterFlowTheme.of(context).primary,
|
FlutterFlowCheckboxGroup(
|
||||||
checkColor: FlutterFlowTheme.of(context).info,
|
options: [
|
||||||
checkboxBorderColor:
|
FFLocalizations.of(context).getText(
|
||||||
FlutterFlowTheme.of(context).secondaryText,
|
'zok7lu4w' /* Visitante */,
|
||||||
textStyle: FlutterFlowTheme.of(context).bodyMedium.override(
|
),
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'oonqk812' /* Morador */,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
onChanged: (val) =>
|
||||||
|
setState(() => _model.checkboxGroupValues1 = val),
|
||||||
|
controller: _model.checkboxGroupValueController1 ??=
|
||||||
|
FormFieldController<List<String>>(
|
||||||
|
List.from([
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'yfj9pd6k' /* Visitante */,
|
||||||
|
),
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'svfcf5xs' /* Morador */,
|
||||||
|
)
|
||||||
|
] ??
|
||||||
|
[]),
|
||||||
|
),
|
||||||
|
activeColor: FlutterFlowTheme.of(context).primary,
|
||||||
|
checkColor: FlutterFlowTheme.of(context).info,
|
||||||
|
checkboxBorderColor:
|
||||||
|
FlutterFlowTheme.of(context).secondaryText,
|
||||||
|
textStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
|
),
|
||||||
|
checkboxBorderRadius: BorderRadius.circular(6.0),
|
||||||
|
initialized: _model.checkboxGroupValues1 != null,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.addToStart(const SizedBox(height: 10.0))
|
||||||
|
.addToEnd(const SizedBox(height: 10.0)),
|
||||||
|
),
|
||||||
|
Column(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'pepv7gl9' /* Tipo de Acesso */,
|
||||||
|
),
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMediumFamily,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context)
|
||||||
|
.bodyMediumFamily),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
].addToStart(const SizedBox(width: 24.0)),
|
||||||
|
),
|
||||||
|
FlutterFlowCheckboxGroup(
|
||||||
|
options: [
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'580z80ct' /* Entrada */,
|
||||||
|
),
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'1nbwqtzs' /* Saida */,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
onChanged: (val) =>
|
||||||
|
setState(() => _model.checkboxGroupValues2 = val),
|
||||||
|
controller: _model.checkboxGroupValueController2 ??=
|
||||||
|
FormFieldController<List<String>>(
|
||||||
|
List.from([
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'5zn9x69v' /* Entrada */,
|
||||||
|
),
|
||||||
|
FFLocalizations.of(context).getText(
|
||||||
|
'8uf522zq' /* Saida */,
|
||||||
|
)
|
||||||
|
] ??
|
||||||
|
[]),
|
||||||
|
),
|
||||||
|
activeColor: FlutterFlowTheme.of(context).primary,
|
||||||
|
checkColor: FlutterFlowTheme.of(context).info,
|
||||||
|
checkboxBorderColor:
|
||||||
|
FlutterFlowTheme.of(context).secondaryText,
|
||||||
|
textStyle: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
|
),
|
||||||
|
checkboxBorderRadius: BorderRadius.circular(6.0),
|
||||||
|
initialized: _model.checkboxGroupValues2 != null,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.addToStart(const SizedBox(height: 10.0))
|
||||||
|
.addToEnd(const SizedBox(height: 10.0)),
|
||||||
|
),
|
||||||
|
FFButtonWidget(
|
||||||
|
onPressed: () {
|
||||||
|
print('Button pressed ...');
|
||||||
|
},
|
||||||
|
text: FFLocalizations.of(context).getText(
|
||||||
|
'88kshkph' /* Salvar */,
|
||||||
|
),
|
||||||
|
options: FFButtonOptions(
|
||||||
|
height: 40.0,
|
||||||
|
padding:
|
||||||
|
const EdgeInsetsDirectional.fromSTEB(24.0, 0.0, 24.0, 0.0),
|
||||||
|
iconPadding:
|
||||||
|
const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
|
||||||
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
|
textStyle: FlutterFlowTheme.of(context).titleSmall.override(
|
||||||
fontFamily:
|
fontFamily:
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
FlutterFlowTheme.of(context).titleSmallFamily,
|
||||||
|
color: Colors.white,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
FlutterFlowTheme.of(context).titleSmallFamily),
|
||||||
),
|
),
|
||||||
checkboxBorderRadius: BorderRadius.circular(6.0),
|
borderSide: const BorderSide(
|
||||||
initialized: _model.checkboxGroupValues2 != null,
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(8.0),
|
||||||
),
|
),
|
||||||
]
|
|
||||||
.addToStart(const SizedBox(height: 10.0))
|
|
||||||
.addToEnd(const SizedBox(height: 10.0)),
|
|
||||||
),
|
|
||||||
FFButtonWidget(
|
|
||||||
onPressed: () {
|
|
||||||
print('Button pressed ...');
|
|
||||||
},
|
|
||||||
text: FFLocalizations.of(context).getText(
|
|
||||||
'88kshkph' /* Salvar */,
|
|
||||||
),
|
),
|
||||||
options: FFButtonOptions(
|
]
|
||||||
height: 40.0,
|
.divide(const SizedBox(height: 10.0))
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(24.0, 0.0, 24.0, 0.0),
|
.addToStart(const SizedBox(height: 10.0))
|
||||||
iconPadding:
|
.addToEnd(const SizedBox(height: 10.0)),
|
||||||
const EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 0.0),
|
),
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
|
||||||
textStyle: FlutterFlowTheme.of(context).titleSmall.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).titleSmallFamily,
|
|
||||||
color: Colors.white,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).titleSmallFamily),
|
|
||||||
),
|
|
||||||
borderSide: const BorderSide(
|
|
||||||
color: Colors.transparent,
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(8.0),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
||||||
.divide(const SizedBox(height: 10.0))
|
|
||||||
.addToStart(const SizedBox(height: 10.0))
|
|
||||||
.addToEnd(const SizedBox(height: 10.0)),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue