TF-1017 Add scrollToTopButtonWidget

(cherry picked from commit 32e1de5e6f8364a41fae7c3a32584511f1e9aa02)
This commit is contained in:
hieubt
2023-10-09 23:44:51 +07:00
committed by Dat H. Pham
parent 3ff04c8180
commit 63d6ae9a8f
2 changed files with 106 additions and 0 deletions
@@ -0,0 +1,12 @@
import 'package:core/core.dart';
import 'package:flutter/material.dart';
class ScrollToTopButtonWidgetStyles {
static const double defaultLimitIndicator = 50.0;
static const double defaultElevation = 5.0;
static const Color defaultColor = AppColor.colorLabelCancelButton;
static const double defaultButtonRadius = 44.0;
static const double buttonPadding = 16.0;
static const double iconWidth = 28.0;
static const double iconHeight = 28.0;
}