An open API service indexing awesome lists of open source software.

https://github.com/bynicodevelop/flutter_profile_avatar


https://github.com/bynicodevelop/flutter_profile_avatar

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# flutter_profile_avatar

Allows you to create an avatar simply...

This plugin includes the [flutter_mobile_camera](https://pub.dev/packages/flutter_mobile_camera) plugin.

Please follow the configuration of this plugin to integrate flutter_profile_avatar.

## Getting Started

```
import 'package:flutter/material.dart';
import 'package:flutter_profile_avatar/flutter_profile_avatar.dart';

void main() {
runApp(MyApp());
}

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Container(
child: ProfileAvatar(
// Set username (create initial in avatar)
username: 'John Doe',
// Set image profile
avatarURL: 'https://picsum.photos/200',
// Set size of avatar
size: 30,
),
),
),
);
}
}

```