in components/frontend_flutterflow/src/lib/components/side_bar/side_bar_widget.dart [42:117]
Widget build(BuildContext context) {
context.watch<FFAppState>();
return Container(
width: 45.0,
height: double.infinity,
decoration: BoxDecoration(),
child: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Padding(
padding: EdgeInsetsDirectional.fromSTEB(0.0, 31.0, 0.0, 0.0),
child: FlutterFlowIconButton(
borderRadius: 6.0,
buttonSize: 35.0,
hoverColor: Color(0xBFFFFFFF),
hoverIconColor: FlutterFlowTheme.of(context).primaryText,
icon: Icon(
Icons.menu_rounded,
color: FlutterFlowTheme.of(context).secondaryText,
size: 18.0,
),
onPressed: () {
print('IconButton pressed ...');
},
),
),
Padding(
padding: EdgeInsetsDirectional.fromSTEB(0.0, 0.0, 0.0, 30.0),
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
Padding(
padding: EdgeInsetsDirectional.fromSTEB(0.0, 31.0, 0.0, 0.0),
child: FlutterFlowIconButton(
borderColor: Colors.transparent,
borderRadius: 6.0,
buttonSize: 35.0,
hoverColor: Color(0xBFFFFFFF),
hoverIconColor: FlutterFlowTheme.of(context).primaryText,
icon: Icon(
Icons.help_outline_rounded,
color: FlutterFlowTheme.of(context).secondaryText,
size: 18.0,
),
onPressed: () {
print('IconButton pressed ...');
},
),
),
Padding(
padding: EdgeInsetsDirectional.fromSTEB(0.0, 31.0, 0.0, 0.0),
child: FlutterFlowIconButton(
borderColor: Colors.transparent,
borderRadius: 6.0,
buttonSize: 35.0,
hoverColor: Color(0xBFFFFFFF),
hoverIconColor: FlutterFlowTheme.of(context).primaryText,
icon: Icon(
Icons.exit_to_app_rounded,
color: FlutterFlowTheme.of(context).secondaryText,
size: 18.0,
),
onPressed: () {
print('IconButton pressed ...');
},
),
),
],
),
),
],
),
);
}