v0.1.3hotspot
简单的旅行、教练标记和教程。只需标记您的小部件即可!
158喜欢 277近 30 天下载150Pub 分数
AndroidiOSWebmacOSWindowsLinux
简单的旅行、教练标记和教程。只需标记您的小部件即可!
{"sdk":"flutter"}^6.1.2{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
The simplest way to make beautiful tours, coachmarks, and tutorials.
demo of under, critically, and over damped Flutter curvesWrap your app, screen, or view with HotspotProvider
class HomeScreen extends StatelessWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const HotspotProvider(
child: Scaffold(
body: // ...
),
);
}
}
Add hotspot callouts to your widget tree
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: () {
// ...
},
).withHotspot(
order: 1,
title: 'Tour It!',
text: 'This is the first callout in the tour!',
);
}
}
Start a flow
HotspotProvider.of(context).startFlow()