Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

flutter boxdecoration add border

// Flutter add border | box decoration 

Container(
  decoration: BoxDecoration(
    border: Border.all(
      color: Colors.blue,
    ),
  ),
  child: Text('Whatever Yall!'),
)
 
PREVIOUS NEXT
Tagged: #flutter #boxdecoration #add #border
ADD COMMENT
Topic
Name
7+2 =