inside method

List<Widget> inside()

Implementation

List<Widget> inside() {
  List<Widget> inside = [
    Text(text, style: TextStyle(color: highlight ? null : const Color(0xFF666666)))
  ];

  if (hasSort) {
    inside.add(Padding(
      padding: EdgeInsets.only(left: Adapt.px(5)),
      child: Column(
        children: [
          triangleTop(),
          triangleBottom()
        ],
      ),
    ));
  }
  return inside;
}