This commit is contained in:
lollipopkit
2023-12-20 11:34:18 +08:00
parent eec13678a1
commit 6924290626
20 changed files with 104 additions and 105 deletions

View File

@@ -69,7 +69,7 @@ class _FullScreenPageState extends State<FullScreenPage> with AfterLayoutMixin {
double get _offset {
// based on screen width
final x = _screenWidth * 0.03;
var r = Random().nextDouble();
final r = Random().nextDouble();
final n = Random().nextBool() ? -1 : 1;
return n * x * r;
}