Skip to content

Instantly share code, notes, and snippets.

@manofi21
Created August 30, 2019 16:55
Show Gist options
  • Save manofi21/bf3e086ee444b742445eac9eb3180c09 to your computer and use it in GitHub Desktop.
Save manofi21/bf3e086ee444b742445eac9eb3180c09 to your computer and use it in GitHub Desktop.
how to show text in dart
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home:Text('Simple text demo.',
style: TextStyle(
color: Colors.blue,
fontSize: 32.0,
fontStyle: FontStyle.italic,
decoration: TextDecoration.underline),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment