-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.dart
52 lines (43 loc) · 1.37 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import 'package:flutter/material.dart';
import 'package:liquid_swipe/liquid_swipe.dart';
import 'package:swipetodlt/abhi.dart';
import 'package:swipetodlt/aditya.dart';
import 'package:swipetodlt/alokx.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:swipetodlt/deep.dart';
import 'package:swipetodlt/pritam.dart';
void main() {
runApp(new Directionality(textDirection: TextDirection.ltr, child: MyApp()));
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return LiquidSwipe(
pages: [
Container(child: Center(
child: FlatButton(
child: Text("Create+", style: GoogleFonts.inter(fontSize: 38,
color: Colors.white,),),
),
),color: Colors.teal,),
AlokX(),
abhi(),
aditya(),
deep(),
pritam(),
Container(child: Center(
child: Text("Add Yourself as a App-Dev Contributer", style: GoogleFonts.inter(fontSize: 38,
color: Colors.white,),),
),
color: Colors.blueGrey[900],
),
],
enableSlideIcon: true,
positionSlideIcon: -0.6,
slideIconWidget: Text("Swipe to change ",style:GoogleFonts.inter(fontSize: 20,
color: Colors.white60),),
waveType: WaveType.circularReveal,
);
}
}