We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f2f68 commit 221a51bCopy full SHA for 221a51b
lib/components/intro_screen/custom_clipper.dart
@@ -12,15 +12,16 @@ class MyCustomClipper extends CustomClipper<Rect> {
12
: alignment == Alignment.topCenter
13
? Rect.fromLTRB(0, -size.height, size.width, size.height)
14
: alignment == Alignment.topRight
15
- ? Rect.fromLTRB(-size.height, 1, size.width, size.height)
+ ? Rect.fromLTRB(0, -size.height, size.height, size.height)
16
: alignment == Alignment.bottomLeft
17
? Rect.fromLTRB(
18
-size.width, -size.height, size.width, size.height)
19
: alignment == Alignment.bottomCenter
20
- ? Rect.fromLTRB(0, 0, size.width, size.height)
+ ? Rect.fromLTRB(
21
+ 0, -size.height, size.width, size.height)
22
: alignment == Alignment.bottomRight
23
- 0, -size.height, size.width, size.height)
24
+ 0, -size.width, size.height, size.height)
25
: Rect.fromLTRB(
26
0, -size.height, size.width, size.height);
27
return rect;
lib/components/intro_screen/gf_intro_bubble_slide.dart
@@ -27,8 +27,8 @@ class GFIntroBubbleSlide extends StatelessWidget {
clipper: MyCustomClipper(alignment: alignment),
28
child: Container(
29
width: MediaQuery.of(context).size.width / 2,
30
- height: MediaQuery.of(context).size.height / 3,
31
- padding: const EdgeInsets.only(right: 24, top: 24, bottom: 64),
+ height: MediaQuery.of(context).size.height / 2,
+ padding: const EdgeInsets.only(left:16,right: 16, top: 24, bottom: 24),
32
color: color.withOpacity(0.5),
33
child: child ??
34
RawMaterialButton(
0 commit comments