我不知道在首次启动移动应用程序时通常显示的交互式视觉指南的名称是什么,如何将其添加到Flutter应用程序中? 谢谢
答案 0 :(得分:1)
请使用此软件包https://github.com/pyozer/introduction_screen
代码段
IntroductionScreen(
pages: listPagesViewModel,
onDone: () {
// When done button is press
},
onSkip: () {
// You can also override onSkip callback
},
showSkipButton: true,
skip: const Icon(Icons.skip_next),
next: const Icon(Icons.next),
done: const Text("Done", style: TextStyle(fontWeight: FontWeight.w600))
);