create account

Using Flare to Build Vector Graphics and Animations in Flutter by tensor

View this thread on: hive.blogpeakd.comecency.com
· @tensor ·
$48.75
Using Flare to Build Vector Graphics and Animations in Flutter
![](https://cdn.steemitimages.com/DQmQt8EhaAMsDyfUiZvBnvfXZvi62vkTmiww4siZ1QPmBfW/image.png)

#### Repository
https://github.com/flutter/flutter

#### What Will I Learn?

- You will learn how to make Vector Graphics in Flare
- You will learn how to use Bones in Flare to Animate graphics
- You will learn how to use Flare Actors to Manipulate the Flare assets in Flutter
- You will learn about the Flare Hierarchy Tree Design
- You will learn how to coordinate different animations together to make a design
- You will learn some of the basics for using the Flare UI with the Flare tool. 


#### Requirements
##### System Requirements: 
- [IDEA intellij](https://www.jetbrains.com/idea/), [Visual Studio Code](https://code.visualstudio.com/) with the Dart/Flutter [Plugins](https://github.com/flutter/flutter-intellij), [Android Studio](https://developer.android.com/studio/index.html) or [Xcode](https://developer.apple.com/xcode/) 
- The [Flutter SDK](https://flutter.io/get-started/install/) on the latest Master Build
- An Android or iOS Emulator or device for testing
##### OS Support for Flutter:
- Windows 7 SP1 or later (64-bit)
- macOS (64-bit)
- Linux (64-bit)
#### Required Knowledge
- A basic knowledge Programming
- A fair understanding of Mobile development and Imperative or Object Oriented Programming
- Basic knowledge of dependencies

#### Resources for Flutter and this Project:
- Flutter Website: https://flutter.io/
- Flutter Official Documentation: https://flutter.io/docs/
- Flutter Installation Information: https://flutter.io/get-started/install/
- Flutter GitHub repository: https://github.com/flutter/flutter
- Flutter Dart 2 Information: https://github.com/flutter/flutter/wiki/Trying-the-preview-of-Dart-2-in-Flutter
- Flutter Technical Overview: https://flutter.io/technical-overview/
- Dart Website: https://www.dartlang.org/
- Flutter Awesome GitHub Repository: https://github.com/Solido/awesome-flutter  
- The Flutter Provider Library: https://github.com/rrousselGit/provider
- Pub website: https://pub.dartlang.org

##### Flare Resources:

- Flare Home Page: https://www.2dimensions.com/
- Flare Made-with Page: https://www.2dimensions.com/made-with-2d
- Flare-Flutter Github: https://github.com/2d-inc/Flare-Flutter 

#### Sources:
Flutter Logo (Google): https://flutter.io/

#### Difficulty


- Intermediate


#### Description

In this Flutter Video tutorial, we take a look at the Flare Flutter runtime library and the Flare UI toolkit.  These two tools were released when Google officially released Flutter to the world during their 2018 I/O conference.  Flare is a runtime and toolkit that allows for developers to build assets and then import them directly into Flutter (and other platforms).  These assets can be manipulated much like any other widget in the Flutter Framework which makes them feel like native widgets.  


#### The Flare UI Toolkit and its Tree Based Hierarchy 

Flare is a fairly comprehensive **SaaS** (software as a service) that can be accessed from a browser.  The Toolkit gives you a robust set of tools which can be used to design and develop graphics and user interfaces features.  You can build the assets using the tools and you can import existing **SVG** files directly into the toolkit. Flare makes use of a tree based hierarchy that works in a way that is similar to Flutter's own widget tree.  Parent objects have control over their children which makes it easy to determine how the objects will interact with one another during an animation. 

<center>
![solar-hierarchy.png](https://cdn.steemitimages.com/DQmUGckDpzgqLLjXjn5Eze9hG3pn1dvqGQiYtcnypZfeLjR/solar-hierarchy.png)
</center>

The above image shows off the general hierarchy of the asset that was created during this Tutorial.  Everything is a child to the artboard which is the main field that you draw these components on-top of.  Underneath of that we have a rectangle which is used to define a background color for our Solar System.  Next to it is the Sun node which is a static node that sits in the very center of our animation.  The sun node is what pins together all of the different shapes that represent our Sun in the graphic.  The Sun then connects to the Earth node with a Bone and like the Sun node, the Earth node pins together the various components for our Earth.  

 

#### Creating Predefined Animations in Flare and Importing them into Flutter

Once you've defined a tree hierarchy for your graphic, you can then create a bunch of different animations.  The animations are able to run at a smooth 60 frames per second and they can be defined directly on the asset itself and then executed with the Flare runtime in your Flutter application.  You may also interface with these animations using Flutter `AnimationControllers` and the controls given you you by the `Flare_Flutter` library.  This allows you to not only define premade static animations but also define the behavior of an asset based on user interaction.  When you export a file from Flare, you are given a `.flr` file which you can then import into your flutter application like any other asset file.  This `.flr` file can then be used to execute the predefined animations and also create dynamic behavior in combination with objects from the `Flare_Flutter` library.  

<center>
![flutter_flare_1.gif](https://cdn.steemitimages.com/DQmRccRBNrxntqruavDkfWoaSp99vq6eVgDF4H7dF8rSiop/flutter_flare_1.gif)
</center>

Above is a Gif of the graphic and animation that was created for this Tutorial.  This animation is running in the Android emulator inside of our Flutter application and it runs at a smooth 60 frames per second.  The animation of the moon, earth and sun rotating was a predefined animation created in the Flare Toolkit.  It was then imported into Flutter via a `.flr` file and then rendered into our application using a `FlareActor` object.  

<center>
![flare-actor.png](https://cdn.steemitimages.com/DQmPwL62WGeJBuvpCZPnM27PkbwBjqCjvd7YaQjQpvixhgY/flare-actor.png)
</center>

Above is the code used to define the `FlareActor` object.  Notice that we need to input the `.flr` file's path using a string.  We then are able to stretch, pan and align the asset using the fit and alignment properties built into the `FlareActor` Object.  There are also many other properties that we can use to modify how the graphic is rendered by Flutter including coloring, decorations, rotations and transformations.  At the very bottom of the `FlareActor` code is a string defining the animation that we want to execute when this widget is rendered by our application.  We can also control how this animation executes using this property in concert with a few other properties given to use by the `Flare_Flutter` library. 


The Source Code for this video may be found here: https://github.com/tensor-programming/flutter_flare_example

The Flare Asset made in this video can be found here: https://www.2dimensions.com/a/tensordeveloper/files/flare/solar

#### Video Tutorial

<iframe width="560" height="315" src="https://www.youtube.com/embed/YLwHXvjEvJs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

### Curriculum 
#### Projects and Series
> ##### Stand Alone Projects:
> - [Building a Flutter Speech to Text/Speech Recognizer Application](https://steemit.com/utopian-io/@tensor/building-a-flutter-speech-to-textspeech-recognizer-application)
> - [Dart Flutter Cross Platform Chat Application Tutorial](https://steemit.com/@tensor/dart-flutter-cross-platform-chat-application-tutorial)
> - [Building a Temperature Conversion Application using Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-temperature-conversion-application-using-dart-s-flutter-framework)
> - [Managing State with Flutter Flux and Building a Crypto Tracker Application with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/managing-state-with-flutter-flux-and-building-a-crypto-tracker-application-with-dart-s-flutter-framework)
> ##### Utopian Rocks Example
> - [Advanced Flutter Project - Setting Up the Basic Structure - Part One](https://steemit.com/@tensor/advanced-flutter-project---setting-up-the-basic-structure---part-one)
> - [Advanced Flutter Project - Adding a Second BloC - Part Two](https://steemit.com/@tensor/advanced-flutter-project---adding-a-second-bloc---part-two)
> - [Advanced Flutter Project - Best Practices - Generic BLoC Providers - Part Three](https://steemit.com/@tensor/advanced-flutter-project---best-practices---generic-bloc-providers---part-three)
> - [Advanced Flutter Project - Adding Fonts and Fuzzy Timestamps - Part Four](https://steemit.com/@tensor/advanced-flutter-project---adding-fonts-and-fuzzy-timestamps---part-four)
> - [Advanced Flutter Project - Filtering Contributions and Building Aesthetics - Part Five](https://steemit.com/@tensor/advanced-flutter-project---filtering-contributions-and-building-aesthetics---part-five-)
> ##### Building a Calculator
> - [Building a Calculator Layout using Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-calculator-layout-using-dart-s-flutter-framework)
> - [Finishing our Calculator Application with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/finishing-our-calculator-application-with-dart-s-flutter-framework)
> ##### Movie Searcher Application
> - [Building a Movie Searcher with RxDart and SQLite in Dart's Flutter Framework (Part 1)](https://steemit.com/utopian-io/@tensor/building-a-movie-searcher-with-rxdart-and-sqlite-in-dart-s-flutter-framework-part-1)
> - [Building a Movie Searcher with RxDart and SQLite in Dart's Flutter Framework (Part 2)](https://steemit.com/utopian-io/@tensor/building-a-movie-searcher-with-rxdart-and-sqlite-in-dart-s-flutter-framework-part-2)
> - [Building a Movie Searcher with RxDart and SQLite in Dart's Flutter Framework (Part 3, Final)](https://steemit.com/utopian-io/@tensor/building-a-movie-searcher-with-rxdart-and-sqlite-in-dart-s-flutter-framework-part-3-final)
> #### Minesweeper Game
> - [Building a Mine Sweeper Game using Dart's Flutter Framework (Part 1)](https://steemit.com/utopian-io/@tensor/building-a-mine-sweeper-game-using-dart-s-flutter-framework-part-1)
> - [Building a Mine Sweeper Game using Dart's Flutter Framework (Part 2)](https://steemit.com/utopian-io/@tensor/building-a-mine-sweeper-game-using-dart-s-flutter-framework-part-2)
> - [Building a Mine Sweeper Game using Dart's Flutter Framework (Part 3)](https://steemit.com/utopian-io/@tensor/building-a-mine-sweeper-game-using-dart-s-flutter-framework-part-3)
> - [Building a Mine Sweeper Game using Dart's Flutter Framework (Part 4, Final)](https://steemit.com/utopian-io/@tensor/building-a-mine-sweeper-game-using-dart-s-flutter-framework-part-4-final)
> #### Redux Todo App
> - [Building a Todo/CRUD Application In Flutter With Redux - Part 3](https://steemit.com/utopian-io/@tensor/building-a-todocrud-application-in-flutter-with-redux---part-3)
> - [Building a Todo/CRUD Application In Flutter With Redux - Part 2](https://steemit.com/utopian-io/@tensor/building-a-todocrud-application-in-flutter-with-redux---part-2)
> - [Building a Todo/CRUD Application In Flutter With Redux - Part 1](https://steemit.com/utopian-io/@tensor/building-a-todocrud-application-in-flutter-with-redux---part-1)
> #### RxCommand Weather App
> - [Building a Weather Application with Dart's Flutter Framework (Part 1, Handling Complex JSON with Built Code Generation)](https://steemit.com/utopian-io/@tensor/building-a-weather-application-with-dart-s-flutter-framework-part-1-handling-complex-json-with-built-code-generation)
> - [Building a Weather Application with Dart's Flutter Framework (Part 2, Creating a Repository and Model)](https://steemit.com/utopian-io/@tensor/building-a-weather-application-with-dart-s-flutter-framework-part-2-creating-a-repository-and-model)
> - [Building a Weather Application with Dart's Flutter Framework (Part 3, RxCommand (RxDart) and Adding an Inherited Widget)](https://steemit.com/utopian-io/@tensor/building-a-weather-application-with-dart-s-flutter-framework-part-3-rxcommand-rxdart-and-adding-an-inherited-widget)
> - [Building a Weather Application with Dart's Flutter Framework (Part 4, Using RxWidget to Build a Reactive User Interface)](https://steemit.com/utopian-io/@tensor/building-a-weather-application-with-dart-s-flutter-framework-part-4-using-rxwidget-to-build-a-reactive-user-interface)
> - [Localize and Internationalize Applications with Intl and the Flutter SDK in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/localize-and-internationalize-applications-with-intl-and-the-flutter-sdk-in-dart-s-flutter-framework)

#### Curriculum

- [Building a Multi-Page Application with Dart's Flutter Mobile Framework](https://steemit.com/utopian-io/@tensor/building-a-multi-page-application-with-dart-s-flutter-mobile-framework)    
- [Making Http requests and Using Json in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/making-http-requests-and-using-json-in-dart-s-flutter-framework)
- [Building Dynamic Lists with Streams in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-dynamic-lists-with-streams-in-dart-s-flutter-framework)
- [Using GridView, Tabs, and Steppers in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-gridview-tabs-and-steppers-in-dart-s-flutter-framework)
- [Using Global Keys to get State and Validate Input in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-global-keys-to-get-state-and-validate-input-in-dart-s-flutter-framework)
- [The Basics of Animation with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/the-basics-of-animation-with-dart-s-flutter-framework)
- [Advanced Physics Based Animations in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/advanced-physics-based-animations-in-dart-s-flutter-framework)
- [Building a Drag and Drop Application with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-drag-and-drop-application-with-dart-s-flutter-framework)
- [Building a Hero Animation and an Application Drawer in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-hero-animation-and-an-application-drawer-in-dart-s-flutter-framework)
- [Using Inherited Widgets and Gesture Detectors in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-inherited-widgets-and-gesture-detectors-in-dart-s-flutter-framework)
- [Using Gradients, Fractional Offsets, Page Views and Other Widgets in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-gradients-fractional-offsets-page-views-and-other-widgets-in-dart-s-flutter-framework)
- [Making use of Shared Preferences, Flex Widgets and Dismissibles with Dart's Flutter framework](https://steemit.com/utopian-io/@tensor/making-use-of-shared-preferences-flex-widgets-and-dismissibles-with-dart-s-flutter-framework)
- [Using the Different Style Widgets and Properties in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-the-different-style-widgets-and-properties-in-dart-s-flutter-framework)
- [Composing Animations and Chaining Animations in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/composing-animations-and-chaining-animations-in-dart-s-flutter-framework)
- [Building a Countdown Timer with a Custom Painter and Animations in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-countdown-timer-with-a-custom-painter-and-animations-in-dart-s-flutter-framework)
- [Reading and Writing Data and Files with Path Provider using Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/reading-and-writing-data-and-files-with-path-provider-using-dart-s-flutter-framework)
- [Exploring Webviews and the Url Launcher Plugin in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/exploring-webviews-and-the-url-launcher-plugin-in-dart-s-flutter-framework)
- [Adding a Real-time Database to a Flutter application with Firebase](https://steemit.com/utopian-io/@tensor/adding-a-real-time-database-to-a-flutter-application-with-firebase)
- [Building a List in Redux with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-list-in-redux-with-dart-s-flutter-framework)
- [Managing State with the Scoped Model Pattern in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/managing-state-with-the-scoped-model-pattern-in-dart-s-flutter-framework)
- [Authenticating Guest Users for Firebase using Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/authenticating-guest-users-for-firebase-using-dart-s-flutter-framework)
- [How to Monetize Your Flutter Applications Using Admob](https://steemit.com/utopian-io/@tensor/how-to-monetize-your-flutter-applications-using-admob)
- [Using Geolocator to Communicate with the GPS and Build a Map in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-geolocator-to-communicate-with-the-gps-and-build-a-map-in-dart-s-flutter-framework)
- [Managing the App Life Cycle and the Screen Orientation in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/managing-the-app-life-cycle-and-the-screen-orientation-in-dart-s-flutter-framework)
- [Making use of General Utility Libraries for Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/making-use-of-general-utility-libraries-for-dart-s-flutter-framework)
- [Interfacing with Websockets and Streams in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/interfacing-with-websockets-and-streams-in-dart-s-flutter-framework)
- [Playing Local, Network and YouTube Videos with the Video Player Plugin in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/playing-local-network-and-youtube-videos-with-the-video-player-plugin-in-dart-s-flutter-framework)
- [Building Custom Scroll Physics and Simulations with Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-custom-scroll-physics-and-simulations-with-dart-s-flutter-framework)
- [Making Dynamic Layouts with Slivers in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/making-dynamic-layouts-with-slivers-in-dart-s-flutter-framework)
- [Building a Sketch Application by using Custom Painters in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/building-a-sketch-application-by-using-custom-painters-in-dart-s-flutter-framework)
- [Using Dart Isolates, Dependency Injection and Future Builders in Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/using-dart-isolates-dependency-injection-and-future-builders-in-dart-s-flutter-framework)
- [Looking at the Main Features of the Beta Three Release of Dart's Flutter Framework](https://steemit.com/utopian-io/@tensor/looking-at-the-main-features-of-the-beta-three-release-of-dart-s-flutter-framework)
- [Working With gRPC in Flutter on Top of a Go Service](https://steemit.com/utopian-io/@tensor/working-with-grpc-in-flutter-on-top-of-a-go-service)


#### Proof of Work Done
https://github.com/tensor-programming
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 394 others
properties (23)
authortensor
permlinkusing-flare-to-build-vector-graphics-and-animations-in-flutter
categoryutopian-io
json_metadata{"tags":["utopian-io","video-tutorials","steemstem","programming","technology"],"app":"steem-plus-app"}
created2019-03-17 23:31:51
last_update2019-03-17 23:31:51
depth0
children8
last_payout2019-03-24 23:31:51
cashout_time1969-12-31 23:59:59
total_payout_value36.668 HBD
curator_payout_value12.079 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19,153
author_reputation87,856,203,149,624
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries
0.
accountsteemplus-pay
weight100
1.
accountutopian.pay
weight500
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id81,487,673
net_rshares75,740,098,949,542
author_curate_reward""
vote details (458)
@channel64 ·
Great post! I invite you to watch the last video on [channel54](https://steemit.com/programming/@channel64/developing-kubernetes-services-at-airbnb-scale-melanie-cebul)
properties (22)
authorchannel64
permlinkre-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190322t091158351z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"links":["https://steemit.com/programming/@channel64/developing-kubernetes-services-at-airbnb-scale-melanie-cebul"],"app":"steemit/0.1"}
created2019-03-22 09:11:57
last_update2019-03-22 09:11:57
depth1
children1
last_payout2019-03-29 09:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length168
author_reputation669,246,752
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,725,200
net_rshares0
@tensor ·
I don't appreciate you using a bot to post the same thing on multiple posts.
properties (22)
authortensor
permlinkre-channel64-re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190322t222214413z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2019-03-22 22:22:15
last_update2019-03-22 22:22:15
depth2
children0
last_payout2019-03-29 22:22:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation87,856,203,149,624
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,762,422
net_rshares0
@rosatravels ·
$9.73
Hi @tensor,

Doing Graphics and animation is a lot of fun.  And this time, I get to see how you do it using the Flutter controller.  It's the details that people need to learn.  Your tutorial provides the detail instruction that is needed.

Thank you again for  your video contribution adding more fun tutorials onto the Flutter series.

Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category.

To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/9/1-1-1-1-1-1-1-1-3-).

---- 
Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).

[[utopian-moderator]](https://join.utopian.io/)
πŸ‘  , , , , , , , , , , ,
properties (23)
authorrosatravels
permlinkre-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t072326083z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["tensor"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/9/1-1-1-1-1-1-1-1-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"}
created2019-03-19 07:23:27
last_update2019-03-19 07:23:27
depth1
children1
last_payout2019-03-26 07:23:27
cashout_time1969-12-31 23:59:59
total_payout_value7.396 HBD
curator_payout_value2.336 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length790
author_reputation422,827,447,688,168
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,556,787
net_rshares14,321,177,355,549
author_curate_reward""
vote details (12)
@utopian-io ·
Thank you for your review, @rosatravels! Keep up the good work!
properties (22)
authorutopian-io
permlinkre-re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t072326083z-20190321t130908z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-21 13:09:12
last_update2019-03-21 13:09:12
depth2
children0
last_payout2019-03-28 13:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation152,955,367,999,756
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,678,205
net_rshares0
@steem-plus ·
SteemPlus upvote
Hi, @tensor!

You just got a **6.5%** upvote from SteemPlus!
To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn.
If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
properties (22)
authorsteem-plus
permlinkusing-flare-to-build-vector-graphics-and-animations-in-flutter---vote-steemplus
categoryutopian-io
json_metadata{}
created2019-03-18 19:24:48
last_update2019-03-18 19:24:48
depth1
children0
last_payout2019-03-25 19:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length432
author_reputation247,952,188,232,400
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,532,361
net_rshares0
@steem-ua ·
#### Hi @tensor!

Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation!
Your post is eligible for our upvote, thanks to our collaboration with @utopian-io!
**Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
properties (22)
authorsteem-ua
permlinkre-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t073833z
categoryutopian-io
json_metadata"{"app": "beem/0.20.18"}"
created2019-03-19 07:38:33
last_update2019-03-19 07:38:33
depth1
children0
last_payout2019-03-26 07:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length285
author_reputation23,214,230,978,060
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,557,237
net_rshares0
@steemstem ·
re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190318t220427055z
<div class='text-justify'> <div class='pull-left'> <br /> <center> <img width='125' src='https://i.postimg.cc/9FwhnG3w/steemstem_curie.png'> </center>  <br/> </div> <br /> <br /> 

 This post has been voted on by the **SteemSTEM** curation team and voting trail in collaboration with **@curie**. <br /> 
 If you appreciate the work we are doing then consider [voting](https://www.steemit.com/~witnesses) both projects for witness by selecting [**stem.witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness) and [**curie**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie)! <br /> 
For additional information please join us on the [**SteemSTEM discord**]( https://discord.gg/BPARaqn) and to get to know the rest of the community! </div>
πŸ‘  
properties (23)
authorsteemstem
permlinkre-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190318t220427055z
categoryutopian-io
json_metadata{"app":"bloguable-bot"}
created2019-03-18 22:04:30
last_update2019-03-18 22:04:30
depth1
children0
last_payout2019-03-25 22:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length800
author_reputation262,017,435,115,313
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,539,425
net_rshares739,152,603
author_curate_reward""
vote details (1)
@utopian-io ·
Hey, @tensor!

**Thanks for contributing on Utopian**.
We’re already looking forward to your next contribution!

**Get higher incentives and support Utopian.io!**
 Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)).

**Want to chat? Join us on Discord https://discord.gg/h52nFrV.**

<a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
properties (22)
authorutopian-io
permlinkre-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t105549z
categoryutopian-io
json_metadata"{"app": "beem/0.20.17"}"
created2019-03-19 10:55:51
last_update2019-03-19 10:55:51
depth1
children0
last_payout2019-03-26 10:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length588
author_reputation152,955,367,999,756
root_title"Using Flare to Build Vector Graphics and Animations in Flutter"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id81,565,782
net_rshares0