smart_flare

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

smart flare

Smart Flare - Customizable Interactable Flare actors #
Interactive capabilities for larger Flare animations.
Installation #
Add smart_flare as dependency to your pubspec file.
smart_flare: any
copied to clipboard
Example #
Here is an example of how to use the functionality within this project.
Usage #
If you want to just play a normal animation I would recommend using Flare's Flutter Package. This is for animations that you want some interaction on.
This is used the same as a Flare Actor is used with some additional properties. To use this actor at a minimum level you have to supply width, heigh and the filename to the animation. This will draw the animation on screen without playing anything.
import 'package:flutter/material.dart';
import 'package:smart_flare/smart_flare.dart';

class FlareDemo extends StatefulWidget {
@override
_FlareDemoState createState() => _FlareDemoState();
}

class _FlareDemoState extends State<FlareDemo> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
body: SmartFlareActor(
width: 295.0,
height: 251.0,
filename: 'assets/button-animation.flr'));
}
}
copied to clipboard
Additionally you can then give it a starting animation for it to play something.
SmartFlareActor(
width: 295.0,
height: 251.0,
filename: 'assets/button-animation.flr',
startingAnimation: 'deactivate')
copied to clipboard
Interactive Areas #
The main feature of this package is to provide it's interactive nature. You can supply the actor with ActiveArea's which looks as follows.
class ActiveArea {
final Rect area;
final String animationName;
final List<String> animationsToCycle;
final Function onAreaTapped;
final List<String> guardComingFrom;
final bool debugArea;
...
}
copied to clipboard
Each active area requires an area and either an animationName to play when tapped, or a list of animationsToCycle through when tapped. You can also set debugArea to true and the touch area will display over the animation so you can see if your calculations are correct.
ActiveArea(
debugArea: true,
area: Rect.fromLTWH(thirdOfWidth*2, 0, thirdOfWidth, animationHeight / 2),
animationName: 'image_tapped',
),
copied to clipboard
Areas can also be defined using relative placements.
RelativeActiveArea(
// from (0,0) with a width 35% of animation width and 50% of height
area: Rect.fromLTRB(0, 0, 0.35, 0.5),
animationName: 'camera_tapped'
),
copied to clipboard
Area Callbacks
If you want to perform an action when something is tapped, which you probably do you can supply a function to onAreaTapped and run your code in there.
ActiveArea(
debugArea: true,
area: Rect.fromLTWH(thirdOfWidth*2, 0, thirdOfWidth, animationHeight / 2),
animationName: 'image_tapped',
onAreaTapped: () {
print('Area Tapped!');
}
)
copied to clipboard
Guarding against animation
If you want to make sure that an animation does not play after another you can supply it with a list of animations to guard against. This means that, the area animation you want to play, WILL NOT PLAY of the last played animation is contained in the guardComingFrom list. GuardGoingTo coming in next release.
ActiveArea(
debugArea: true,
area: Rect.fromLTWH(thirdOfWidth*2, 0, thirdOfWidth, animationHeight / 2),
guardComingFrom: ['deactivate'],
animationName: 'image_tapped',
onAreaTapped: () {
print('Image tapped!');
}),
copied to clipboard
And that's it!
Specialized Actors #
CycleFlareActor
Given a list of animations this actor will play one after the other as it is tapped.
CycleFlareActor(
width: animationWidth,
height: animationHeight,
filename: 'assets/button-animation.flr',
animations: ['deactivate', 'activate'],
)
copied to clipboard
PanFlareActor
Given an open and close animation this actor will play those animations when panned across it. It plays the open animation in the direction supplied. If no close animation is provided the open animation will be reversed when swiping in the "closing" direction.
Currently only supports horizontal panning. Vertical panning on the way.
PanFlareActor(
width: 135.0,
height: screenSize.height,
filename: "assets/tutorial-transition.flr",
openAnimation: 'drawer-open',
closeAnimation: 'drawer-close',
direction: ActorAdvancingDirection.RightToLeft,
threshold: 60.0,
reverseOnRelease: true,
activeAreas: [
RelativePanArea(
area: Rect.fromLTWH(0, 0.7, 1.0, 0.3),
debugArea: true
)
],
)
copied to clipboard
threshold (optional): Total number of pixels to swipe to play the animation until the end when released.
reverseOnRelease (optional. Default true): Tells the actor to reverse the animation when the user stops interacting with the actor and the threshold is not reached.
activeAreas (required): You have to supply at least one relative pan area
Contribution #

Fork it!
Create your feature branch: git checkout -b my-new-feature
Commit your changes: git commit -am 'Add some feature'
Push to the branch: git push origin my-new-feature
Submit a pull request.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.