v0.0.2status_view
WhatsApp 및 Instagram과 같이 상태를 표시합니다. 이 패키지는 WhatsApp 상태처럼 사용자 상태를 표시하는 데 도움이 됩니다. 여기서 상태 수, 읽음 및 안 읽음 상태를 지정할 수 있으며, 동일한 패키지는 Instagram과 같은 상태를 표시하는 데에도 사용할 수 있습니다.
WhatsApp 및 Instagram과 같이 상태를 표시합니다.
{"sdk":"flutter"}{"sdk":"flutter"}아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Display status just like WhatsApp & Instagram. This package help to display users status like WhatsApp status. in this we can specify the number of status ,seen and unseen status as well, apart from that same package use to display status like Instagram.
https://raw.githubusercontent.com/akshayambaliya/flutter_status_view/main/assets/status.png
You just need to add status_view as a dependency in your pubspec.yaml file.
dependencies:
status_view: ^0.0.1
StatusView(
radius: 40,
spacing: 15,
strokeWidth: 2,
indexOfSeenStatus: 2,
numberOfStatus: 5,
padding: 4,
centerImageUrl: "https://picsum.photos/200/300",
seenColor: Colors.grey,
unSeenColor: Colors.red,
),
| Attributes | Description |
|---|---|
| radius | radius of status view circul |
| spacing | spacing between two status indicator |
| strokeWidth | strokeWidth of status indicator |
| indexOfSeenStatus | index of which status is already seen |
| numberOfStatus | total number of status |
| padding | padding between status indicator and center image |
| centerImageUrl | center image required |
| seenColor | color of already seen status |
| unSeenColor | color of unSeen status |
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.