Skip to content

Instantly share code, notes, and snippets.

@Kvaibhav01
Last active March 17, 2018 19:15
Show Gist options
  • Save Kvaibhav01/a3db62567e146a2ddfa0920be44fa057 to your computer and use it in GitHub Desktop.
Save Kvaibhav01/a3db62567e146a2ddfa0920be44fa057 to your computer and use it in GitHub Desktop.
Making a text widget in Flutter
import 'package:flutter/material.dart';
class HomePage extends StatelessWidget
{
@override
Widget build(BuildContext context)
{
return new Material(
color: Colors.blue,
child: new InkWell(
child: new Column(
children: <Widget>[
new Text("Hello World!"),
],
)
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment