augment init
This commit is contained in:
parent
b3dd850b0a
commit
79c19abbc9
29
lib/augment.dart
Normal file
29
lib/augment.dart
Normal file
@ -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'),
|
||||||
|
),
|
||||||
|
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user