Is it possible to format paragraphs (alignment, indent, spacing) in flutter?
Like I do in MS Word:
import 'package:flutter/material.dart';
void main() {
runApp(const MaterialApp(
home: SafeArea(child: Scaffold(body: Text('first line\nsecond line'))),
));
}



Use Expanded Widget to move it on second Line and use Text Align to Align the text