return OutlineButton(
padding: EdgeInsets.only(top: 10, bottom: 10, left: 10, right: 10),
borderSide: BorderSide(style: BorderStyle.solid, color: Colors.transparent),
highlightedBorderColor: Colors.transparent,
disabledBorderColor: Colors.transparent,
onPressed: () { onPressed(index); },
child: SizedBox(
width: MediaQuery.of(context).size.width - 20,
child: RichText(
text: TextSpan(
children: texts,
),
),
),
);