FilledStacks / flutter_hotspot

For of flutter_hotspot to ensure stability on main

Home Page:https://twitter.com/luke_pighetti/status/1293643335933075456

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hotspot

An interactivity & developer experience experiment for building easy tours.

demo.mp4

Extensions look like callouts. Common tour flows look like callouts. So let's use them both so the code looks like the tours.

class Example extends StatelessWidget {
  const Example({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return IconButton(
      icon: const Icon(Icons.play_arrow),
      onPressed: () {
        HotspotProvider.of(context).startFlow();
      },
    ).withHotspot(
      order: 1,
      title: 'Tour It!',
      text: 'This is the first callout in the tour!',
    );
  }
}

About

For of flutter_hotspot to ensure stability on main

https://twitter.com/luke_pighetti/status/1293643335933075456

License:Other


Languages

Language:Dart 98.6%Language:Swift 1.0%Language:Kotlin 0.3%Language:Objective-C 0.1%