fraction static method

BackGestureWidthGetter fraction(
  1. double fraction
)

Always returns a value equals to fraction of screen width

Implementation

static BackGestureWidthGetter fraction(double fraction) =>
    (sizeGetter) => sizeGetter().width * fraction;