Skip to content
This repository was archived by the owner on Nov 19, 2022. It is now read-only.

Commit e04742f

Browse files
Challenge 4
1 parent 30e16fd commit e04742f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import 'package:flutter/material.dart';
2+
3+
class DraggableCard extends StatefulWidget {
4+
@override
5+
State<StatefulWidget> createState() => _DraggableCardState();
6+
7+
}
8+
9+
class _DraggableCardState extends State<DraggableCard> {
10+
@override
11+
Widget build(BuildContext context) {
12+
// TODO: implement build
13+
return null;
14+
}
15+
16+
}

0 commit comments

Comments
 (0)