Skip to content

Commit

Permalink
Merge pull request #7 from appswithlove/feature/flutter-improvements
Browse files Browse the repository at this point in the history
Feature/flutter improvements
  • Loading branch information
arok authored Jun 20, 2024
2 parents 8f252f0 + 2868cc4 commit f718eba
Show file tree
Hide file tree
Showing 30 changed files with 1,857 additions and 57 deletions.
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,15 @@ Updraft is built by App Agencies [Apps with love](https://appswithlove.com/) and

## Requirements

- minSdkVersion >=19
- minSdkVersion >=21

## Installation

Add the repository into your top-level build.gradle file:

```
allproject {
repositories {
mavenCentral()
// needed for an old dependency, we will need to fix in later release
maven { url 'https://maven.scijava.org/content/repositories/public/' }
}
}
```

Add this line to your dependencies in app-level build.gradle file:

```
dependencies {
implementation 'com.appswithlove.updraft:updraft-sdk:1.0.14'
implementation 'com.appswithlove.updraft:updraft-sdk:1.0.15'
}
```

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
compileSdk 34
defaultConfig {
applicationId "com.appswithlove.updraftsdk"
minSdkVersion 19
minSdkVersion 21
targetSdkVersion 34
versionCode 5
versionName "1.4"
Expand Down
1 change: 1 addition & 0 deletions freedrawview/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
199 changes: 199 additions & 0 deletions freedrawview/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
FreeDrawView
======

<img src="sample.gif" title="sample" /> <br />
A View that let you draw freely on it. You can customize paint width, alpha and color. Can be useful for notes app, signatures or hands-free writing<br /><br />
<img src="sample_scrollable.gif" title="sample" /> <br />
This View works flawlessly inside Scrolling parents like NestedScrollView. Be careful with lists, you need to restore manually the draw state!<br /><br />
<img src="sample_rotation.gif" title="sample" /> <br />
Also supports state-restore on rotation, with custom behaviours like "clear, crop or fitXY" and you can take a screenshot (given to you as a Bitmap Object) of the View drawn content<br />

[Changelog](CHANGELOG.md)<br />

You can try the demo app on google play store. <br />
coming soon <br /> <br />
Or see the full video demo on YouTube. <br />
https://youtu.be/ejEdq4lnPjc <br /> <br />

Download
------
#### Gradle:
```groovy
compile 'com.rm:freedrawview:1.1.2'
```

<br />
<b>Min SDK version: 9 (Android 2.3) </b>
<br />

## Usage

To use this library, just add this inside your layout file

```xml
<com.rm.freedrawview.FreeDrawView
android:id="@+id/your_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"

app:paintAlpha="255"
app:paintColor="@color/black"
app:paintWidth="4dp"
app:resizeBehaviour="crop"/>
```

... if you need to use this View's custom xml attributes (shown in a table below or in the example above) do not forget to add this to your root layout
```
xmlns:app="http://schemas.android.com/apk/res-auto"
```

And this in your Activity
```java
public class MainActivity extends AppCompatActivity {
FreeDrawView mSignatureView;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

mSignatureView = (FreeDrawView) findViewById(R.id.your_id);

// Setup the View
mSignatureView.setPaintColor(Color.BLACK);
mSignatureView.setPaintWidthPx(getResources.getDimensionPixelSize(R.dimen.paint_width));
//mSignatureView.setPaintWidthPx(12);
mSignatureView.setPaintWidthDp(getResources.getDimension(R.dimen.paint_width));
//mSignatureView.setPaintWidthDp(6);
mSignatureView.setPaintAlpha(255);// from 0 to 255
mSignatureView.setResizeBehaviour(ResizeBehaviour.CROP);// Must be one of ResizeBehaviour
// values;

// This listener will be notified every time the path done and undone count changes
mSignatureView.setPathRedoUndoCountChangeListener(new PathRedoUndoCountChangeListener() {
@Override
public void onUndoCountChanged(int undoCount) {
// The undoCount is the number of the paths that can be undone
}

@Override
public void onRedoCountChanged(int redoCount) {
// The redoCount is the number of path removed that can be redrawn
}
});
// This listener will be notified every time a new path has been drawn
mSignatureView.setOnPathDrawnListener(new PathDrawnListener() {
@Override
public void onNewPathDrawn() {
// The user has finished drawing a path
}

@Override
public void onPathStart() {
// The user has started drawing a path
}
});

// This will take a screenshot of the current drawn content of the view
mSignatureView.getDrawScreenshot(new FreeDrawView.DrawCreatorListener() {
@Override
public void onDrawCreated(Bitmap draw) {
// The draw Bitmap is the drawn content of the View
}

@Override
public void onDrawCreationError() {
// Something went wrong creating the bitmap, should never
// happen unless the async task has been canceled
}
});
}
}
```

#### Save and restore manually the Draw content
From v1.1.0 you can get the current state of the Draw (as a Serializable object) and than restore it:
```java
FreeDrawSerializableState state = mSignatureView.getCurrentViewStateAsSerializable();// This returns a FreeDrawSerializableState (which implements Serializable)

// Save this "state" object into a file or keep it where you want

mSignatureView.restoreStateFromSerializable(state);// Restore the state of the view

// Now all the previous paths and points have been restored (including the history)
```

To save this Serializable Object inside a file you can take a look at the class [FileHelper](app/src/main/java/com/rm/freedrawsample/FileHelper.java)

<br />

#### Supported Attributes
FreeDrawView
------
| XML Attribute | Java method | Description | Default value |
|------------------------- |----------------------------------------------------------------- |----------------------------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------------------- |
| paintColor | setPaintColor(@ColorInt int checked) | Set the color of the paint | Color.BLACK |
| paintWidth | setPaintWidthPx(@FloatRange(from = 0) float widthPx) | Set the width of the paint in pixels | 4dp |
| | setPaintWidthDp(float dp) | Set the width of the paint in dp | 4dp |
| paintAlpha | setPaintAlpha(@IntRange(from = 0, to = 255) int alpha) | Set the alpha of the paint | 255 |
| resizeBehaviour | setResizeBehaviour(ResizeBehaviour newBehaviour) | The behaviour of the view every time it is resized (on rotation for example) one of [clear, fitXY, crop] | ResizeBehaviour.CROP |

<br />

#### Limitations and TODO
* Multitouch drawing is currently not supported <br />
* Eraser is not yet implemented <br />
* ~~Manually restore state is not supported~~ <br />
* Get the draw screenshot from a FreeDrawSerializableState without adding the view

<br />

Also, the FreeDrawView class gives some utility methods to handle path history: <br />
* ```public void undoLast()``` <br />
This method undo the last drawn segment <br /> <br />
* ```public void redoLast()``` <br />
This method redraw the last undone segment <br /> <br />
* ```public void undoAll()``` <br />
This method undo all the drawn segments, they can be redone one by one or all in one <br /> <br />
* ```public void redoAll()``` <br />
This method redraw all the undone segments <br /> <br />
* ```public void clearHistory()``` <br />
This method removes all the history segments (The one that could be redone) <br /> <br />
* ```public void clearDraw()``` <br />
This method removes all the current drawn segments, without adding them to the history <br /> <br />
* ```public void clearDrawAndHistory()``` <br />
This method removes all the current drawn segments and clears the history <br /> <br />
* ```public int getPathCount(boolean includeCurrentlyDrawingPath)``` <br />
This method returns the current number of segments drawn <br /> <br />


<br />

You can use: <br/>
* ```setOnPathDrawnListener(PathDrawnListener listener)``` <br />
to be notified every time the user starts or finishes drawing a line. <br /> <br />
* ```setPathRedoUndoCountChangeListener(PathRedoUndoCountChangeListener listener)``` <br />
to be notified when the undo or redo count changes. <br /> <br />

And remove them with: <br/>
* ```removePathDrawnListener()``` <br />
* ```removePathRedoUndoCountChangeListener()``` <br />
<br />

License
--------

Copyright 2017 Riccardo Moro.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
45 changes: 45 additions & 0 deletions freedrawview/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
apply plugin: 'com.android.library'

ext {
bintrayRepo = 'maven'
bintrayName = 'freedrawview'

publishedGroupId = 'com.rm'
libraryName = 'freedrawview'
artifact = 'freedrawview'

libraryDescription = 'A View on which you can freely draw, customizing paint width, alpha and color, and take a screenshot of the content.'

siteUrl = 'https://github.com/RiccardoMoro/FreeDrawView'
gitUrl = 'https://github.com/RiccardoMoro/FreeDrawView.git'

libraryVersion = '1.1.2'

developerId = 'RiccardoMoro'
developerName = 'Riccardo Moro'
developerEmail = '[email protected]'

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}

android {
namespace "com.rm.freedrawview"
compileSdk 34

defaultConfig {
minSdkVersion 9
targetSdkVersion 34
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation libs.androidx.annotation
}
17 changes: 17 additions & 0 deletions freedrawview/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\riky9\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
Binary file added freedrawview/sample.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added freedrawview/sample_rotation.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added freedrawview/sample_scrollable.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added freedrawview/screen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions freedrawview/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rm.freedrawview">

<application
android:allowBackup="true"
android:supportsRtl="true"/>
</manifest>
Loading

0 comments on commit f718eba

Please sign in to comment.