|
|
@@ -3,6 +3,7 @@ import '/flutter_flow/flutter_flow_theme.dart';
|
|
|
import '/flutter_flow/flutter_flow_util.dart';
|
|
|
import '/flutter_flow/flutter_flow_widgets.dart';
|
|
|
import 'dart:ui';
|
|
|
+import 'package:aligned_tooltip/aligned_tooltip.dart';
|
|
|
import 'package:flutter/material.dart';
|
|
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
@@ -97,37 +98,103 @@ class _HeaderButtonsComponentWidgetState
|
|
|
child: Row(
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
children: [
|
|
|
- FlutterFlowIconButton(
|
|
|
- borderRadius: 8.0,
|
|
|
- buttonSize: 40.0,
|
|
|
- fillColor: Color(0xFFB50808),
|
|
|
- icon: Icon(
|
|
|
- Icons.dehaze_outlined,
|
|
|
- color: FlutterFlowTheme.of(context).info,
|
|
|
- size: 24.0,
|
|
|
+ AlignedTooltip(
|
|
|
+ content: Padding(
|
|
|
+ padding: EdgeInsets.all(4.0),
|
|
|
+ child: Text(
|
|
|
+ FFLocalizations.of(context).getText(
|
|
|
+ '17msrach' /* Menu openen */,
|
|
|
+ ),
|
|
|
+ style: FlutterFlowTheme.of(context).bodyLarge.override(
|
|
|
+ font: GoogleFonts.inter(
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontStyle,
|
|
|
+ ),
|
|
|
+ letterSpacing: 0.0,
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontStyle,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
),
|
|
|
- onPressed: () async {
|
|
|
- Scaffold.of(context).openDrawer();
|
|
|
- },
|
|
|
- ),
|
|
|
- Padding(
|
|
|
- padding: EdgeInsetsDirectional.fromSTEB(4.0, 0.0, 0.0, 0.0),
|
|
|
+ offset: 4.0,
|
|
|
+ preferredDirection: AxisDirection.down,
|
|
|
+ borderRadius: BorderRadius.circular(8.0),
|
|
|
+ backgroundColor: FlutterFlowTheme.of(context).secondaryBackground,
|
|
|
+ elevation: 4.0,
|
|
|
+ tailBaseWidth: 24.0,
|
|
|
+ tailLength: 12.0,
|
|
|
+ waitDuration: Duration(milliseconds: 100),
|
|
|
+ showDuration: Duration(milliseconds: 1500),
|
|
|
+ triggerMode: TooltipTriggerMode.tap,
|
|
|
child: FlutterFlowIconButton(
|
|
|
- borderColor: Color(0x00FF0000),
|
|
|
- borderRadius: 30.0,
|
|
|
- borderWidth: 1.0,
|
|
|
- buttonSize: 50.0,
|
|
|
+ borderRadius: 8.0,
|
|
|
+ buttonSize: 40.0,
|
|
|
fillColor: Color(0xFFB50808),
|
|
|
icon: Icon(
|
|
|
- Icons.arrow_back_outlined,
|
|
|
- color: Colors.white,
|
|
|
- size: 30.0,
|
|
|
+ Icons.dehaze_outlined,
|
|
|
+ color: FlutterFlowTheme.of(context).info,
|
|
|
+ size: 24.0,
|
|
|
),
|
|
|
onPressed: () async {
|
|
|
- context.pop();
|
|
|
+ Scaffold.of(context).openDrawer();
|
|
|
},
|
|
|
),
|
|
|
),
|
|
|
+ AlignedTooltip(
|
|
|
+ content: Padding(
|
|
|
+ padding: EdgeInsets.all(4.0),
|
|
|
+ child: Text(
|
|
|
+ FFLocalizations.of(context).getText(
|
|
|
+ 'pj545url' /* Terug */,
|
|
|
+ ),
|
|
|
+ style: FlutterFlowTheme.of(context).bodyLarge.override(
|
|
|
+ font: GoogleFonts.inter(
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontStyle,
|
|
|
+ ),
|
|
|
+ letterSpacing: 0.0,
|
|
|
+ fontWeight:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontWeight,
|
|
|
+ fontStyle:
|
|
|
+ FlutterFlowTheme.of(context).bodyLarge.fontStyle,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ offset: 4.0,
|
|
|
+ preferredDirection: AxisDirection.down,
|
|
|
+ borderRadius: BorderRadius.circular(8.0),
|
|
|
+ backgroundColor: FlutterFlowTheme.of(context).secondaryBackground,
|
|
|
+ elevation: 4.0,
|
|
|
+ tailBaseWidth: 24.0,
|
|
|
+ tailLength: 12.0,
|
|
|
+ waitDuration: Duration(milliseconds: 100),
|
|
|
+ showDuration: Duration(milliseconds: 1500),
|
|
|
+ triggerMode: TooltipTriggerMode.tap,
|
|
|
+ child: Padding(
|
|
|
+ padding: EdgeInsetsDirectional.fromSTEB(4.0, 0.0, 0.0, 0.0),
|
|
|
+ child: FlutterFlowIconButton(
|
|
|
+ borderColor: Color(0x00FF0000),
|
|
|
+ borderRadius: 30.0,
|
|
|
+ borderWidth: 1.0,
|
|
|
+ buttonSize: 50.0,
|
|
|
+ fillColor: Color(0xFFB50808),
|
|
|
+ icon: Icon(
|
|
|
+ Icons.arrow_back_outlined,
|
|
|
+ color: Colors.white,
|
|
|
+ size: 30.0,
|
|
|
+ ),
|
|
|
+ onPressed: () async {
|
|
|
+ context.pop();
|
|
|
+ },
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ),
|
|
|
],
|
|
|
),
|
|
|
);
|