These are the options I used.
I expected that when I swiped to the right on the last screen that I would continue to the next part of the app. The logic in the screen does seem to check for overscroll, but on flutter web this does not seem to work.
IntroductionOptions(
pages: [
IntroductionPage(
title: const Text('Hello'),
text: const SizedBox.shrink(),
),
IntroductionPage(
title: const Text('World'),
text: const SizedBox.shrink(),
),
],
)