File tree Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ getflutter-web-kit
3434getflutter_app
3535test /.test_coverage.dart
3636example /
37- getflutter /lib /components /slidable
3837
3938# Android related
4039** /android /** /gradle-wrapper.jar
Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments