File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
lib/content_management/view Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -219,6 +219,9 @@ class _CreateHeadlineViewState extends State<_CreateHeadlineView> {
219
219
decoration: InputDecoration (
220
220
labelText: l10n.countryName,
221
221
border: const OutlineInputBorder (),
222
+ helperText: state.countriesIsLoadingMore
223
+ ? l10n.loadingFullList
224
+ : null ,
222
225
),
223
226
items: [
224
227
DropdownMenuItem (value: null , child: Text (l10n.none)),
@@ -245,9 +248,11 @@ class _CreateHeadlineViewState extends State<_CreateHeadlineView> {
245
248
),
246
249
),
247
250
],
248
- onChanged: (value) => context
249
- .read <CreateHeadlineBloc >()
250
- .add (CreateHeadlineCountryChanged (value)),
251
+ onChanged: state.countriesIsLoadingMore
252
+ ? null
253
+ : (value) => context
254
+ .read <CreateHeadlineBloc >()
255
+ .add (CreateHeadlineCountryChanged (value)),
251
256
),
252
257
const SizedBox (height: AppSpacing .lg),
253
258
DropdownButtonFormField <ContentStatus >(
You can’t perform that action at this time.
0 commit comments