Skip to content

Instantly share code, notes, and snippets.

@luizmarcus
Created August 10, 2019 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luizmarcus/90b14913ca4a8ab02513fd5df85c2e7e to your computer and use it in GitHub Desktop.
Save luizmarcus/90b14913ca4a8ab02513fd5df85c2e7e to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class Fragment extends StatelessWidget {
final String title;
const Fragment(this.title);
@override
Widget build(BuildContext context) {
return Center(
child: Text(title),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment