Вы ищете свойство: textWidthBasis. Установите его TextWidthBasis.longestLine
, и ширина текста изменится в зависимости от longestLine
, следовательно, будет удалено пустое пространство справа.
Text("Why don't you I set up an appointment and we can discuss this further...",
textWidthBasis: TextWidthBasis.longestLine,),
Полный код:
class MultiLinee extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
color: Colors.grey,
child: Container(
constraints: BoxConstraints(maxWidth: MediaQuery
.of(context)
.size
.width * (2 / 3)),
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 20),
child: Container(
color: Colors.yellow,
child: Text("Why don't you I set up an appointment and we can discuss this further...",
textWidthBasis: TextWidthBasis.longestLine,),
),
),
),
),
),
);
}
}