flutter_spotlight 0.0.1 copy "flutter_spotlight: ^0.0.1" to clipboard
flutter_spotlight: ^0.0.1 copied to clipboard

outdated

Spotlight for Flutter

flutter_spotlight #

Spotlight for Flutter

pub package

Example #

class _MyHomePageState extends State<MyHomePage> {
  Offset _center = Offset(100.0, 100.0);
  double _radius = 50.0;

  @override
  Widget build(BuildContext context) {
    return Spotlight(
      center: _center,
      radius: _radius,
      child: new Scaffold(
        appBar: new AppBar(
          title: new Text(widget.title),
          actions: <Widget>[
            IconButton(
              icon: Icon(Icons.search),
              onPressed: () {},
            ),
          ],
        ),
        body: SafeArea(
          child: Container(),
        ),
        floatingActionButton: FloatingActionButton(
          child: Icon(Icons.favorite_border),
          onPressed: () {},
        ),
      ),
    );
  }
}
6
likes
0
pub points
38%
popularity

Publisher

unverified uploader

Spotlight for Flutter

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_spotlight