Skip to content

Instantly share code, notes, and snippets.

@patrickward
Created November 2, 2022 14:37
Show Gist options
  • Save patrickward/876b9cab27736805e1cc32b653687e90 to your computer and use it in GitHub Desktop.
Save patrickward/876b9cab27736805e1cc32b653687e90 to your computer and use it in GitHub Desktop.

Adaptive Widgets for Flutter

Built-in adaptive widgets

Flutter has several widgets that have built-in adaptive features showing a styled widget that adapts to the currently platform (Cupertino or Material).

Icon(
  Icons.adaptive.search,
)
const Slider.adaptive(
  ...
)
const Switch.adaptive(
  ...
)
const SwitchListTile.adaptive(
  ...
)
const CircularProgressIndicator.adaptive(
  ...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment