Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
org.benoitharrault.puzzlegame
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
android
org.benoitharrault.puzzlegame
Commits
3e7d9c21
Commit
3e7d9c21
authored
3 years ago
by
Benoît Harrault
Browse files
Options
Downloads
Patches
Plain Diff
Add drag-drop / swap features on tiles
parent
1271ede2
No related branches found
No related tags found
1 merge request
!7
Resolve "Add drag-drop / swap feature on tiles"
Pipeline
#1230
passed
3 years ago
Stage: update
Stage: build-debug
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
android/gradle.properties
+2
-2
2 additions, 2 deletions
android/gradle.properties
lib/entities/tile.dart
+48
-1
48 additions, 1 deletion
lib/entities/tile.dart
with
50 additions
and
3 deletions
android/gradle.properties
+
2
−
2
View file @
3e7d9c21
org.gradle.jvmargs
=
-Xmx1536M
org.gradle.jvmargs
=
-Xmx1536M
android.useAndroidX
=
true
android.useAndroidX
=
true
android.enableJetifier
=
true
android.enableJetifier
=
true
app.versionName
=
0.0.
5
app.versionName
=
0.0.
6
app.versionCode
=
5
app.versionCode
=
6
This diff is collapsed.
Click to expand it.
lib/entities/tile.dart
+
48
−
1
View file @
3e7d9c21
...
@@ -17,13 +17,60 @@ class Tile {
...
@@ -17,13 +17,60 @@ class Tile {
@required
this
.
originalRow
,
@required
this
.
originalRow
,
);
);
Container
w
idget
()
{
Container
_tileW
idget
()
{
return
Container
(
return
Container
(
decoration:
BoxDecoration
(
color:
Colors
.
black
,
border:
Border
.
all
(
color:
Colors
.
black
,
width:
1
,
),
),
child:
Image
(
child:
Image
(
image:
this
.
image
.
image
,
image:
this
.
image
.
image
,
width:
this
.
size
,
width:
this
.
size
,
height:
this
.
size
,
height:
this
.
size
,
fit:
BoxFit
.
fill
fit:
BoxFit
.
fill
),
);
}
Container
widget
()
{
return
Container
(
child:
DragTarget
<
List
<
int
>>(
builder:
(
BuildContext
context
,
List
<
dynamic
>
accepted
,
List
<
dynamic
>
rejected
,
)
{
return
Container
(
height:
this
.
size
,
width:
this
.
size
,
color:
Colors
.
cyan
,
child:
Draggable
<
List
<
int
>>(
data:
[
this
.
currentCol
,
this
.
currentRow
,
],
// Widget when draggable is stationary
child:
this
.
_tileWidget
(),
// Widget when draggable is being dragged
feedback:
this
.
_tileWidget
(),
// Widget to display on original place when being dragged
childWhenDragging:
Container
(
height:
this
.
size
,
width:
this
.
size
,
color:
Colors
.
pinkAccent
,
),
),
);
},
onAccept:
(
List
<
int
>
data
)
{
print
(
data
.
toString
());
},
)
)
);
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment