Skip to content

Instantly share code, notes, and snippets.

@stephaniefash
Last active August 16, 2020 09:05
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 stephaniefash/31f2193b604823058022505fbb4cd217 to your computer and use it in GitHub Desktop.
Save stephaniefash/31f2193b604823058022505fbb4cd217 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
String imageSource =
'https://images.unsplash.com/photo-1592275772614-ec71b19e326f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80';
@override
Widget build(BuildContext context) {
return new Scaffold(
backgroundColor: Colors.white,
body: Center(
child: ClipRRect(
borderRadius: BorderRadius.circular(30.0),
child: Image.network(
imageSource,
width: 300,
height: 300,
fit: BoxFit.cover,
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment