Last active
August 16, 2020 09:05
-
-
Save stephaniefash/31f2193b604823058022505fbb4cd217 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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