Skip to content

Commit 2ba031e

Browse files
author
srinivas
committed
did format & analyze folders
1 parent 6f076cb commit 2ba031e

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

lib/components/intro_screen/custom_clipper.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ class MyCustomClipper extends CustomClipper<Rect> {
1212
: alignment == Alignment.topCenter
1313
? Rect.fromLTRB(0, -size.height, size.width, size.height)
1414
: alignment == Alignment.topRight
15-
? Rect.fromLTRB(
16-
-size.height, 1, size.width, size.height)
15+
? Rect.fromLTRB(-size.height, 1, size.width, size.height)
1716
: alignment == Alignment.bottomLeft
1817
? Rect.fromLTRB(
1918
-size.width, -size.height, size.width, size.height)
2019
: alignment == Alignment.bottomCenter
21-
? Rect.fromLTRB(
22-
0, 0, size.width, size.height)
20+
? Rect.fromLTRB(0, 0, size.width, size.height)
2321
: alignment == Alignment.bottomRight
2422
? Rect.fromLTRB(
2523
0, -size.height, size.width, size.height)

lib/components/intro_screen/gf_intro_screen.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,14 @@ class _GFIntroScreenState extends State<GFIntroScreen> {
141141
}
142142

143143
Widget buildBubbleType() => Container(
144-
height: MediaQuery.of(context).size.height,
145-
width: MediaQuery.of(context).size.width,
146-
child: PageView(
147-
physics: const ScrollPhysics(),
148-
children: bubbleSlides(),
149-
controller: _pageController,
150-
),
151-
);
144+
height: MediaQuery.of(context).size.height,
145+
width: MediaQuery.of(context).size.width,
146+
child: PageView(
147+
physics: const ScrollPhysics(),
148+
children: bubbleSlides(),
149+
controller: _pageController,
150+
),
151+
);
152152

153153
List<Widget> bubbleSlides() {
154154
final List<Widget> list = [];

0 commit comments

Comments
 (0)