Creating Cirle Avatar import 'package:flutter/material.dart'; class Circleavtaar extends StatelessWidget { @override Widget build(BuildContext context) { return Center( child: CircleAvatar( radius: 30.0, backgroundImage: NetworkImage('yout image url '), backgroundColor: Colors.transparent, ) ); } } Result :
Text Widget in Flutter import 'package:flutter/material.dart'; class TextExample extends StatelessWidget { const TextExample({Key key}) : super(key: key); @override Widget build(BuildContext context) { return Center( child: Text( 'Fluttering Life.', textAlign: TextAlign.center, style: TextStyle( color: Colors.red, fontSize: 32.0, fontStyle: FontStyle.italic, fontWeight: FontWeight.w500, decoration: TextDecoration.underline), ), ); } } Result :