@@ -97,6 +97,7 @@ class _AddTagDialogueState extends State<AddTagDialogue>
97
97
content: Builder (builder: (context) {
98
98
return AnimatedContainer (
99
99
duration: Duration (milliseconds: 200 ),
100
+ constraints: BoxConstraints (),
100
101
height: _showdropdown
101
102
? hp - (600 - (50 * _itemsVisibleInDropdown - 1 ))
102
103
: hp - 650 ,
@@ -105,6 +106,7 @@ class _AddTagDialogueState extends State<AddTagDialogue>
105
106
children: [
106
107
Text (
107
108
'Set Tags' ,
109
+ key: Key ('Set Tags Text' ),
108
110
textAlign: TextAlign .center,
109
111
style: TextStyle (
110
112
color: ThemeProvider .theme (widget.index)
@@ -128,6 +130,7 @@ class _AddTagDialogueState extends State<AddTagDialogue>
128
130
children: < Widget > [
129
131
Expanded (
130
132
child: TextFormField (
133
+ key: Key ('Tags Text Form Field' ),
131
134
controller: _textController,
132
135
decoration: InputDecoration (
133
136
fillColor: themeProvider.isDarkMode
@@ -145,9 +148,11 @@ class _AddTagDialogueState extends State<AddTagDialogue>
145
148
icon: _showdropdown
146
149
? Icon (
147
150
Icons .keyboard_arrow_up_rounded,
151
+ key: Key ('Show Arrow Up Icon' ),
148
152
)
149
153
: Icon (
150
154
Icons .keyboard_arrow_down_rounded,
155
+ key: Key ('Show Arrow Down Icon' ),
151
156
),
152
157
onPressed: () {
153
158
SystemChannels .textInput
@@ -192,6 +197,7 @@ class _AddTagDialogueState extends State<AddTagDialogue>
192
197
),
193
198
),
194
199
Container (
200
+ key: Key ('Tags List Container' ),
195
201
decoration: BoxDecoration (
196
202
borderRadius: BorderRadius .circular (10 ),
197
203
color: themeProvider.isDarkMode
0 commit comments