I was expecting to be able to write a Cupertino app without importing the Material library, but various widgets that don't seem to be Material-specific are only available if I import flutter/material.dart.
The two that I've hit so far are CircleAvatar and Divider.
It's difficult, if not impossible, to avoid importing the Material library in a Flutter project, since so many basic UI building blocks are tied to it.
I was expecting to be able to write a Cupertino app without importing the Material library, but various widgets that don't seem to be Material-specific are only available if I import
flutter/material.dart
.The two that I've hit so far are
CircleAvatar
andDivider
.