Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.

Commit fa1453a

Browse files
committed
Styling
1 parent 97131bb commit fa1453a

File tree

15 files changed

+40
-17
lines changed

15 files changed

+40
-17
lines changed

README.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
# DrawIt!
1+
# Draw It!
22

3-
A new Flutter project.
3+
Simple drawing app.
4+
5+
## Available actions and options:
6+
* Color selection
47

5-
## Getting Started
8+
* History (undo/redo actions)
9+
* Clearing drawing canvas
10+
* Reset offset position
611

7-
This project is a starting point for a Flutter application.
12+
* Shape fill on/off
813

9-
A few resources to get you started if this is your first Flutter project:
14+
* Shape fill on/off
1015

11-
- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
12-
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
13-
14-
For help getting started with Flutter, view our
15-
[online documentation](https://flutter.dev/docs), which offers tutorials,
16-
samples, guidance on mobile development, and a full API reference.
16+
## Available tools:
17+
* Move/scale/rotate
18+
* Pencil
19+
* Eraser
20+
* Line
21+
* Rectangle
22+
* Oval
4.46 KB
Loading
2.55 KB
Loading

android/app/src/main/res/drawable-v21/launch_background.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<item android:drawable="?android:colorBackground" />
55

66
<!-- You can insert your own image assets here -->
7-
<!-- <item>
8-
<bitmap
9-
android:gravity="center"
10-
android:src="@mipmap/launch_image" />
11-
</item> -->
7+
<!-- <item>-->
8+
<!-- <bitmap-->
9+
<!-- android:gravity="center"-->
10+
<!-- android:src="@drawable/ic_launcher_foreground" />-->
11+
<!-- </item>-->
1212
</layer-list>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:width="108dp"
4+
android:height="108dp"
5+
android:viewportHeight="108"
6+
android:viewportWidth="108">
7+
8+
<solid android:color="#ffffffff" />
9+
10+
</shape>
6.65 KB
Loading
12.5 KB
Loading
19.1 KB
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3+
<background android:drawable="@drawable/ic_launcher_background" />
4+
<foreground>
5+
<inset android:inset="15%" android:drawable="@drawable/ic_launcher_foreground" />
6+
</foreground>
7+
</adaptive-icon>
5.07 KB
Loading

0 commit comments

Comments
 (0)