https://github.com/geekswamp/alphatar
  
  
    Alphabet Avatar for Flutter 
    https://github.com/geekswamp/alphatar
  
        Last synced: 4 months ago 
        JSON representation
    
Alphabet Avatar for Flutter
- Host: GitHub
- URL: https://github.com/geekswamp/alphatar
- Owner: geekswamp
- License: mit
- Created: 2020-10-05T06:11:39.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-29T09:24:42.000Z (almost 5 years ago)
- Last Synced: 2025-06-26T12:55:52.272Z (4 months ago)
- Language: Dart
- Size: 32.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
 
Awesome Lists containing this project
README
          # Alphatar
 
Create an avatar with the initials of your text.
## Screenshot
     
## Installation
In the `dependencies:` section of your `pubspec.yaml`, add the following line:
```yaml
alphatar: 
```
## Usage
You can use it very easily. For example:
```dart
class Example extends StatelessWidget {
  const Example({Key key}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return Container(
      alignment: Alignment.center,
      child: Alphatar(
        initials: "Alice",
        backgroundColor: Colors.purple[900],
        onTap: () => print("Awesome!"),
      ),
    );
  }
}
```
## License
MIT