https://github.com/pixelcmtd/super_hero
a really horrible shit but @Niklas914 wants this
https://github.com/pixelcmtd/super_hero
Last synced: 7 months ago
JSON representation
a really horrible shit but @Niklas914 wants this
- Host: GitHub
- URL: https://github.com/pixelcmtd/super_hero
- Owner: pixelcmtd
- License: mit
- Created: 2021-08-03T13:33:12.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-03T13:33:48.000Z (almost 5 years ago)
- Last Synced: 2025-03-11T04:25:19.741Z (over 1 year ago)
- Language: Dart
- Size: 19.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# super_hero

* A Flutter package to generate random super-hero names to be used as placeholder text.
* Rather than plain old random-word pairs, you can instead fill in with a super-hero name.
## Usage :
### Importing the package
```dart
import 'package:super_hero/super_hero.dart';
```
### Retrieving a random super-hero name
```dart
SuperHero.random(); // returns a random super-hero name
```
### `pubspec` set-Up
```yaml
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^0.1.2
super_hero: ^1.0.1 # Include this line under the dependencies.
```