I'm getting a color and decoration null error

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 StatelessWidget… 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?

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’, child:… 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?

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: 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

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