Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huhx/flutter_snowflake
Snowflake in Flutter
https://github.com/huhx/flutter_snowflake
dart flutter snowflake
Last synced: about 2 months ago
JSON representation
Snowflake in Flutter
- Host: GitHub
- URL: https://github.com/huhx/flutter_snowflake
- Owner: huhx
- License: mit
- Created: 2023-01-21T13:45:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-02T06:45:08.000Z (almost 2 years ago)
- Last Synced: 2024-10-14T09:28:45.149Z (3 months ago)
- Topics: dart, flutter, snowflake
- Language: Dart
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Language: [中文简体](README_CN.md) | [English](README.md)
# flutter_snowflake
SnowFlake id generator, inspired by Twitter. For more details, you can read the following doc: Twitter IDs## 🐱 Usage
### Add dependency
```yaml
dependencies:
flutter_snowflake: ^0.0.4
```### Generate id
```dart
final int id = Snowflake(2, 3).getId();
```