TKeyValueSection.columnsInline constructor
TKeyValueSection.columnsInline({})
Factory constructor for inline multi-column grid layout with vertically aligned key columns.
Implementation
factory TKeyValueSection.columnsInline({
Key? key,
required List<TKeyValue> values,
TKeyValueTheme? theme,
int? columns,
double? keyWidth,
double? keyMaxWidth,
double gap = 16,
Alignment? keyAlignment,
double hSpacing = 24,
double vSpacing = 12,
bool? removeEmpty,
}) {
return TKeyValueSection(
key: key,
values: values,
theme: theme,
gridInline: true,
columnar: true,
columns: columns,
inlineKeyWidth: keyWidth,
inlineKeyMaxWidth: keyMaxWidth,
inlineKeyGap: gap,
inlineKeyAlignment: keyAlignment,
gridHorizontalSpacing: hSpacing,
gridVerticalSpacing: vSpacing,
removeEmpty: removeEmpty,
);
}