Skip to content

Instantly share code, notes, and snippets.

@boldijar
Created March 9, 2018 14:02
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 boldijar/090909a1c972403f07f2503875611f5d to your computer and use it in GitHub Desktop.
Save boldijar/090909a1c972403f07f2503875611f5d to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class DebugUiPage extends StatefulWidget {
DebugUiPage({Key key}) : super(key: key);
@override
_DebugUiPageState createState() => new _DebugUiPageState();
}
class _DebugUiPageState extends State<DebugUiPage> {
@override
Widget build(BuildContext context) {
return new Container(
width: 100.0,
height: 100.0,
decoration: new BoxDecoration(
shape: BoxShape.circle,
image: new DecorationImage(
image: new NetworkImage("https://i.imgur.com/72z8TvR.jpg")
)
));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment