Break Text From Line
Complete Code For Break Text From Line In Flutter
Main.dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.deepOrange,
title: Text('Break Text Line From Middle')
),
body: Center(
child: Text('Lorem Ipsum, \nis simply dummy text of \nthe printing and typesetting industry.',
style: TextStyle(fontSize: 22), textAlign: TextAlign.center)
)
)
);
}
}