如何为Flutter应用添加首次启动的视觉帮助?

时间:2019-08-28 06:41:39

标签: flutter

我不知道在首次启动移动应用程序时通常显示的交互式视觉指南的名称是什么,如何将其添加到Flutter应用程序中? 谢谢

1 个答案:

答案 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))
);

enter image description here