Skip to content

Instantly share code, notes, and snippets.

@boldijar
Created March 9, 2018 13:57
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/4e31b832e467287c53c336ca56fc4c17 to your computer and use it in GitHub Desktop.
Save boldijar/4e31b832e467287c53c336ca56fc4c17 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: 10.0,
height: 10.0,
child: new CircleAvatar(
backgroundImage: 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