Skip to content

Commit 61ae793

Browse files
committed
git ignore modified
1 parent f127893 commit 61ae793

File tree

3 files changed

+16
-17
lines changed

3 files changed

+16
-17
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ getflutter-web-kit
3434
getflutter_app
3535
test/.test_coverage.dart
3636
example/
37-
getflutter/lib/components/slidable
3837

3938
# Android related
4039
**/android/**/gradle-wrapper.jar

example/lib/main.dart

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,19 +85,19 @@ class _MyHomePageState extends State<MyHomePage> {
8585
),
8686
Column(
8787
children: <Widget>[
88-
const Padding(
89-
padding: EdgeInsets.only(bottom: 25),
90-
child: Center(
91-
child: Text(
92-
'We also have same app on playstore. It shows various possibilities that you can achieve using GetFlutter library.',
93-
style: TextStyle(
94-
fontSize: 16,
95-
color: GFColors.WHITE,
96-
),
97-
textAlign: TextAlign.center,
98-
),
99-
),
100-
),
88+
// const Padding(
89+
// padding: EdgeInsets.only(bottom: 25),
90+
// child: Center(
91+
// child: Text(
92+
// 'We also have same app on playstore. It shows various possibilities that you can achieve using GetFlutter library.',
93+
// style: TextStyle(
94+
// fontSize: 16,
95+
// color: GFColors.WHITE,
96+
// ),
97+
// textAlign: TextAlign.center,
98+
// ),
99+
// ),
100+
// ),
101101
GFButton(
102102
size: GFSize.large,
103103
text: 'View on Playstore',

lib/components/slidable/gf_slidable.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -932,9 +932,9 @@ class GFSlidableState extends State<GFSlidable>
932932
onHorizontalDragStart: _directionIsXAxis ? _handleDragStart : null,
933933
onHorizontalDragUpdate: _directionIsXAxis ? _handleDragUpdate : null,
934934
onHorizontalDragEnd: _directionIsXAxis ? _handleDragEnd : null,
935-
onVerticalDragStart: _directionIsXAxis ? null : _handleDragStart,
936-
onVerticalDragUpdate: _directionIsXAxis ? null : _handleDragUpdate,
937-
onVerticalDragEnd: _directionIsXAxis ? null : _handleDragEnd,
935+
// onVerticalDragStart: _directionIsXAxis ? null : _handleDragStart,
936+
// onVerticalDragUpdate: _directionIsXAxis ? null : _handleDragUpdate,
937+
// onVerticalDragEnd: _directionIsXAxis ? null : _handleDragEnd,
938938
behavior: HitTestBehavior.opaque,
939939
child: content,
940940
);

0 commit comments

Comments
 (0)