-
Notifications
You must be signed in to change notification settings - Fork 0
/
snippet.dart
133 lines (120 loc) · 3.79 KB
/
snippet.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import 'package:flutter/material.dart';
void main(){
runApp(MyApp());
}
// App Widget:-
class MyApp extends StatefulWidget {
// Initialize app
MyApp();
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
/// Widget
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
/// Home
home: ClipperExamples(),
);
}
}
class ClipperExamples extends StatefulWidget {
@override
_ClipperExamplesState createState() => _ClipperExamplesState();
}
class _ClipperExamplesState extends State<ClipperExamples> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Color(0XFF307777),
title: Text("Clipper Example"),
),
body: SingleChildScrollView(
child: Container(
width: double.infinity,
margin: EdgeInsets.all(20.0),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
/// ClipRect
Container(
margin: EdgeInsets.only(top: 40.0,),
child: Text(
"ClipRect",
style: Theme.of(context).textTheme.headline4,
),
),
ClipRect(
child: Container(
child: Align(
alignment: Alignment.center,
widthFactor: 0.5,
heightFactor: 0.8,
child: Image.network(
'https://images.unsplash.com/photo-1595760780346-f972eb49709f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60'),
),
),
),
//ClipRRect
Container(
margin: EdgeInsets.only(top: 40.0,),
child: Text(
"ClipRRect",
style: Theme.of(context).textTheme.headline4,
),
),
ClipRRect(
borderRadius: BorderRadius.circular(300.0),
child: Image.network(
"https://images.unsplash.com/photo-1595152772835-219674b2a8a6?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60"),
),
/// ClipOval
Container(
margin: EdgeInsets.only(top: 40.0,),
child: Text(
"ClipOval",
style: Theme.of(context).textTheme.headline4,
),
),
ClipOval(
child: Container(
child: Image.network(
'https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60'),
),
),
/// ClipPath
Container(
margin: EdgeInsets.only(top: 40.0,),
child: Text(
"ClipPath",
style: Theme.of(context).textTheme.headline4,
),
),
ClipPath(
clipper: TriangleClipper(),
child: Image.network(
"https://images.unsplash.com/photo-1519699047748-de8e457a634e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60"),
)
],
),
),
),
);
}
}
class TriangleClipper extends CustomClipper<Path> {
@override
Path getClip(Size size) {
final path = Path();
path.moveTo(size.width / 2, 0.0);
path.lineTo(size.width, size.height);
path.lineTo(0.0, size.height);
path.close();
return path;
}
@override
bool shouldReclip(TriangleClipper oldClipper) => false;
}