Skip to content

Instantly share code, notes, and snippets.

@maffan91
Created September 15, 2019 12:54
Show Gist options
  • Save maffan91/92977f83c229955fadd7802ca4d98513 to your computer and use it in GitHub Desktop.
Save maffan91/92977f83c229955fadd7802ca4d98513 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class DetailedProfile extends StatelessWidget {
final String name;
final String email;
DetailedProfile({this.name, this.email});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Profile'),
),
body: Container(
child: ListTile(
title: Text(name),
subtitle: Text(email),
)),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment