|
@@ -0,0 +1,29 @@
|
|
|
+import 'package:flutter/material.dart';
|
|
|
+import 'package:http/http.dart' as http;
|
|
|
+import 'dart:convert';
|
|
|
+import 'dart:ui_web' as ui;
|
|
|
+import 'dart:html' as html;
|
|
|
+
|
|
|
+class EmailToolbar extends StatelessWidget {
|
|
|
+ final VoidCallback onButtonPressed;
|
|
|
+
|
|
|
+ const EmailToolbar({Key? key, required this.onButtonPressed}) : super(key: key);
|
|
|
+
|
|
|
+ @override
|
|
|
+ Widget build(BuildContext context) {
|
|
|
+ return Row(
|
|
|
+ children: [
|
|
|
+ ElevatedButton(
|
|
|
+ onPressed: onButtonPressed,
|
|
|
+ child: Text('Home'),
|
|
|
+ ),
|
|
|
+ SizedBox(width: 8),
|
|
|
+ ElevatedButton(
|
|
|
+ onPressed: onButtonPressed,
|
|
|
+ child: Text('Reload'),
|
|
|
+ ),
|
|
|
+
|
|
|
+ ],
|
|
|
+ );
|
|
|
+ }
|
|
|
+}
|