v0.1.3hotspot
सरल टूर, कोचमार्क और ट्यूटोरियल। बस अपने विजेट्स को टैग करें!
158लाइक 27730-दिन डाउनलोड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()