Search
 
SCRIPT & CODE EXAMPLE
 

DART

how to decorate container in flutter

Container(
  decoration: BoxDecoration(
    color: const Color(0xff7c94b6),
    image: const DecorationImage(
      image: NetworkImage('https://flutter.github.io/assets-for-api-docs/assets/widgets/owl-2.jpg'),
      fit: BoxFit.cover,
    ),
    border: Border.all(
      color: Colors.black,
      width: 8,
    ),
    borderRadius: BorderRadius.circular(12),
      
 //   borderRadius: new BorderRadius.only(            
 //              topLeft   : const Radius.circular(40.0),
 // 				topRight  : const Radius.circular(40.0),
 //				bottomLeft: const Radius.circular(40.0),
 //			bottomRight:const Radius.circular(40.0),            
 //            )
  ),
)
Comment

PREVIOUS NEXT
Code Example
Dart :: dart exception 
Dart :: chips in flutter 
Dart :: flutter column min height screen sixe 
Dart :: toast in flutter 
Dart :: dart function as variable 
Dart :: flutter inner box shadow plugin 
Dart :: dart char is uppercase 
Dart :: dart modulo 
Dart :: shape property of card in flutter 
Dart :: android studio emulator blue screen windows 10 
Dart :: Flutter Dart - Difference Two DateTime 
Dart :: settimeout dart 
Dart :: base64encode flutter 
Dart :: app bar textStyle flutter 
Dart :: sort map keys dart 
Dart :: dart object to map 
Dart :: Send HTTP Get request in Flutter or Dart 
Dart :: overflow box flutter 
Dart :: class in dart 
Dart :: dart create hash 
Dart :: force flutter orientation 
Dart :: runapp in flutter 
Dart :: flutter bottom sheet input button overlay flow by 
Dart :: english_words.dart 
Dart :: dart map where 
Dart :: ~/ vs / dart 
Dart :: restrick platform orientation flutter 
Dart :: Flutter Text new fline 
Dart :: Single document from firestore to a dart object 
Dart :: allow background service in flutter app 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =