Если я правильно понимаю ваш вопрос, вам просто нужно добавить decoration
свойство текста и передать ему TextDecoration.underline
, чтобы достичь нижнего подчеркивания. Рабочий пример кода ниже:
body: Center(
child: OutlineButton(
color: Theme.of(context).buttonColor,
textColor: Theme.of(context).textTheme.bodyText1.color,
// disabledColor: Colors.grey,
disabledTextColor: Colors.black,
// borderSide: (),
onPressed: () {
},
child: Center(
child: Text(
"No Reminder",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 18.0, decoration: TextDecoration.underline),
),
),
)
),
Надеюсь, что это ответ на ваш вопрос.