I tried many solutions on SO but none of them are working, I try these solutions here,here but still font showing no effect and app is not showing any error. what is wrong with the code.
this is my code below
Widget textSection = new Container(
decoration: new BoxDecoration(
color: Colors.blue[100], border: new Border.all(color: Colors.black)),
padding: const EdgeInsets.all(18.0),
margin: const EdgeInsets.only(left: 14.0, right: 14.0, bottom: 14.0),
width: double.infinity,
child: new Text(
"Labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",
textAlign: TextAlign.center,
style: new TextStyle(
color: Colors.black45,
fontSize: 22.0,
fontFamily: 'Raleway-Regular'),
softWrap: true,
),
);