add bullets and align composer tablet

This commit is contained in:
ManhNTX
2022-07-28 21:57:54 +07:00
committed by Dat H. Pham
parent 1a0d7079ad
commit 058a1ff645
3 changed files with 103 additions and 11 deletions
@@ -27,6 +27,7 @@ class DropDownButtonWidget<T> extends StatelessWidget {
final Widget? iconArrowDown;
final Color? colorButton;
final String tooltip;
final double? dropdownWidth;
const DropDownButtonWidget({
Key? key,
@@ -41,6 +42,7 @@ class DropDownButtonWidget<T> extends StatelessWidget {
this.radiusButton = 10,
this.opacity = 1.0,
this.iconArrowDown,
this.dropdownWidth,
this.colorButton = Colors.white,
this.tooltip = '',
}) : super(key: key);
@@ -147,6 +149,7 @@ class DropDownButtonWidget<T> extends StatelessWidget {
scrollbarRadius: const Radius.circular(40),
scrollbarThickness: 6,
onMenuStateChange: onMenuStateChange,
dropdownWidth: dropdownWidth,
),
),
);