Answers for "add bottom border to expansiontile flutter"

C#
4

add only bottom border to container flutter

decoration: BoxDecoration(
          border: Border(
            top: BorderSide(width: 16.0, color: Colors.lightBlue.shade600),
            bottom: BorderSide(width: 16.0, color: Colors.lightBlue.shade900),
          ),
          color: Colors.white,
        ),
Posted by: Guest on November-20-2020
-1

flutter border between expansiontile

Theme(
  data: Theme.of(context).copyWith(dividerColor: Colors.transparent),
  child: ExpansionTile()
)
Posted by: Guest on March-26-2021

Code answers related to "add bottom border to expansiontile flutter"

C# Answers by Framework

Browse Popular Code Answers by Language