A flutter plugin to generate an avatar with name initials from a full-name string.
Add this to your package's pubspec.yaml file:
dependencies:
auro_avatar: "^0.1.0"
Add it to your dart file:
import 'package:auro_avatar/auro_avatar.dart';
The auro_avatar can be used directly as:
new InitialNameAvatar(
'John Doe',
circleAvatar: true,
borderColor: Colors.grey,
borderSize: 4.0,
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
padding: 20.0,
textSize: 30.0,
),
new InitialNameAvatar(
'John Doe',
circleAvatar: false,
...
),