Smueez / floating_animated_widget

a flutter package for floating widget
Other
17 stars 10 forks source link

Flicking when drag #6

Closed callmejm closed 1 year ago

callmejm commented 1 year ago
FloatingDraggableWidget(
    floatingWidget: Container(
      decoration: BoxDecoration(
        color: ColorTheme.mainYellow.value,
        borderRadius: BorderRadius.circular(100)
      ),
      height: 45,
      width: 45,
      child: Icon(Icons.play_arrow_rounded),
    ),
    autoAlign: true,
    floatingWidgetHeight: 45,
    floatingWidgetWidth: 45,
    dx: 200,
    dy: 10,
    speed: 1,
    mainScreenWidget: Home(),
)

https://user-images.githubusercontent.com/6957533/211318383-4a83138b-4b9e-4f26-9b30-cef75d4e946e.mp4