I'm getting a color and decoration null error

Advertisements HELP!! Please i’m getting this error color == null || decoration == null "Cannot provide both a color and a decoration\nTo provide both, use "decoration: BoxDecoration(color: color)"." The relevant error-causing widget was: AppIconText AppIconText:file:///Users/jessezephyr/projects/flutter/ticketapp/lib/screens/search_screen.dart:67:17 This is the code `flutter` { “` import ‘package:flutter/cupertino.dart’; import ‘package:flutter/material.dart’; import ‘package:gap/gap.dart’; import ‘package:ticketapp/utils/app_layout.dart’; import ‘../utils/app_styles.dart’; class AppIconText extends… Read More I'm getting a color and decoration null error

It is not accepted to change the value in the Dropdown in the bottom sheet?

Advertisements Flutter . It is not accepted to change the value in the Dropdown in the bottom sheet ? I made all the changes and it didn’t work ! Knowing that on a normal screen it works please help me class _AddPostState extends State<AddPost> { List<DropdownMenuItem<String>> get itemse{ List<DropdownMenuItem<String>> menuItems = [ DropdownMenuItem( value: ‘1’,… Read More It is not accepted to change the value in the Dropdown in the bottom sheet?

flutter problem : How to make country image in circular?

Advertisements I want to make a flag in circular. I am using "country_calling_code_picker: ^2.0.0" plugin and i got a image that image i want in circular. when I am trying to make in circular then its not becoming. this is my code. Row( children: [ Expanded( flex: 0, child: Container( decoration: BoxDecoration( color: whiteColor.withOpacity(0.4), border:… Read More flutter problem : How to make country image in circular?

flutter problem: How to make button with centered text and right side Icon

Advertisements I want to make a button, In this button I want a text and icon both but text should be in center and icon will be right side. this is code of button. bottomNavigationBar: Padding( padding: const EdgeInsets.only(top: 20.0, bottom: 20, left: 20, right: 20), child: SizedBox( height: 45, width: MediaQuery.of(context).size.width, child: FlatButton( onPressed:… Read More flutter problem: How to make button with centered text and right side Icon

When I print a Map in Flutter, double quotes are missing in the Log

Advertisements I have a Map in flutter Map<String, dynamic> map = { ‘key1’: ‘Dog’, ‘key2’: ‘Chicken’, }; I need to print the map like this, { "key1": "Dog", "key2": "Chicken" } But I get the log prints the Map like this("double quotes are missing"), { key1: Dog, key2: Chicken } >Solution : You can use… Read More When I print a Map in Flutter, double quotes are missing in the Log

flutter problem : how to remove brackets of list data

Advertisements this is my postman response, In this response I have a "areaOfMentoring" Key In Area of mentoring key i have two data And I want to show both data. but when fetching areaOfMentoring’s data then its showing like this areaOfMentoring’s data is Diabetes and Heart Health Its showing after abhijeet vijayvargiya There are coming… Read More flutter problem : how to remove brackets of list data