status_view 0.0.2 copy "status_view: ^0.0.2" to clipboard
status_view: ^0.0.2 copied to clipboard

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 t [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:status_view/status_view.dart';
void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        body: Center(
          child:StatusView(
            radius: 40,
            spacing: 15,
            strokeWidth: 2,
            indexOfSeenStatus: 2,
            numberOfStatus: 5,
            padding: 4,
            seenColor: Colors.grey,
            unSeenColor: Colors.red,
            centerImageUrl: "https://picsum.photos/200/300",
          )
        ),
      )
    );
  }
}
83
likes
120
pub points
86%
popularity

Publisher

unverified uploader

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.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on status_view