sectionTitle static method
A divider plus a small muted caption, used to break a long form into groups.
Implementation
static Widget sectionTitle(String title) => UColumn(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
const Divider(height: 20),
UTextBodySmall(title, color: UAdminTheme.grey, fontWeight: FontWeight.w700),
],
);