IconAppBar.skeleton constructor
Implementation
IconAppBar.skeleton({
super.key,
this.height = kToolbarHeight,
}) : appBar = Builder(
builder: (BuildContext context) => AppBar(
centerTitle: true,
leading: ButtonBox(
onTap: context.pop,
padding: Insets.h16v12,
child: Assets.icons.arrowLeft.svg(),
),
title: const SizedBox.shrink(),
),
);