Adds in image icons
This commit is contained in:
parent
7836668d4c
commit
192f039421
21 changed files with 88 additions and 51 deletions
|
@ -1,6 +1,8 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class RenamePrompt extends StatefulWidget {
|
||||
const RenamePrompt({super.key});
|
||||
|
||||
@override
|
||||
State<StatefulWidget> createState() {
|
||||
return RenameState();
|
||||
|
@ -20,14 +22,14 @@ class RenameState extends State<RenamePrompt> {
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AlertDialog(
|
||||
icon: Icon(Icons.edit_attributes),
|
||||
title: Text("Edit Tag Name"),
|
||||
icon: const Icon(Icons.edit_attributes),
|
||||
title: const Text("Edit Tag Name"),
|
||||
actions: [
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.pop(context, name.text);
|
||||
},
|
||||
child: Text("SUBMIT")),
|
||||
child: const Text("SUBMIT")),
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue