 #### 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>  </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>  </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>  </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
author | tensor | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | using-flare-to-build-vector-graphics-and-animations-in-flutter | ||||||||||||
category | utopian-io | ||||||||||||
json_metadata | {"tags":["utopian-io","video-tutorials","steemstem","programming","technology"],"app":"steem-plus-app"} | ||||||||||||
created | 2019-03-17 23:31:51 | ||||||||||||
last_update | 2019-03-17 23:31:51 | ||||||||||||
depth | 0 | ||||||||||||
children | 8 | ||||||||||||
last_payout | 2019-03-24 23:31:51 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 36.668 HBD | ||||||||||||
curator_payout_value | 12.079 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 19,153 | ||||||||||||
author_reputation | 87,856,203,149,624 | ||||||||||||
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 81,487,673 | ||||||||||||
net_rshares | 75,740,098,949,542 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 82,623,053,633 | 1.29% | ||
tombstone | 0 | 23,543,213,788 | 0.1% | ||
delegate.lafona | 0 | 299,792,224,217 | 20% | ||
lola-carola | 0 | 356,339,393 | 2.16% | ||
kevinwong | 0 | 40,643,598,164 | 0.5% | ||
anwenbaumeister | 0 | 192,801,347 | 4.32% | ||
mammasitta | 0 | 983,005,752 | 0.21% | ||
norbu | 0 | 20,921,670,993 | 25% | ||
arconite | 0 | 102,388,561 | 0.25% | ||
misha | 0 | 7,479,598,555 | 100% | ||
rufans | 0 | 29,770,318,345 | 100% | ||
lemouth | 0 | 49,788,472,920 | 10% | ||
rwilday | 0 | 52,739,421 | 100% | ||
lamouthe | 0 | 11,450,742,595 | 20% | ||
abh12345 | 0 | 20,212,525,425 | 3.41% | ||
whoib | 0 | 590,772,856 | 70% | ||
curie | 0 | 1,382,506,733,592 | 4.32% | ||
techslut | 0 | 86,586,281,108 | 20% | ||
hendrikdegrote | 0 | 56,927,162,102 | 4.32% | ||
achiron | 0 | 38,372,962,825 | 100% | ||
vact | 0 | 84,214,058,838 | 4.32% | ||
sward | 0 | 5,970,891,823 | 50% | ||
blhz | 0 | 4,418,618,652 | 20% | ||
steemstem | 0 | 820,468,534,719 | 20% | ||
minersean | 0 | 7,454,187,362 | 75% | ||
gangstayid | 0 | 97,937,787 | 2.16% | ||
vodonik | 0 | 79,796,416 | 6.6% | ||
dna-replication | 0 | 5,622,409,369 | 20% | ||
ripperone | 0 | 904,309,804,897 | 18% | ||
erikaflynn | 0 | 15,888,751,930 | 35% | ||
sn0n | 0 | 967,836,712 | 5% | ||
gmedley | 0 | 323,726,067 | 2.16% | ||
diebaasman | 0 | 2,361,737,945 | 12% | ||
tibra | 0 | 783,036,542 | 25% | ||
miniature-tiger | 0 | 101,784,784,170 | 50% | ||
moksamol | 0 | 501,653,874 | 2.16% | ||
getrichordie | 0 | 137,133,738 | 2.16% | ||
thatsweeneyguy | 0 | 105,073,050 | 2.16% | ||
szokerobert | 0 | 114,145,301 | 0.86% | ||
bloom | 0 | 81,247,220,442 | 20% | ||
momogrow | 0 | 2,850,290,740 | 4.32% | ||
eurogee | 0 | 64,597,307 | 2% | ||
iansart | 0 | 1,438,760,219 | 2.16% | ||
kryzsec | 0 | 843,464,041 | 16% | ||
jakipatryk | 0 | 15,011,942,264 | 50% | ||
jiujitsu | 0 | 1,854,393,990 | 2.16% | ||
jga | 0 | 2,982,998,315 | 24.41% | ||
lekang | 0 | 585,945,489 | 2.16% | ||
helo | 0 | 113,788,105,454 | 52.69% | ||
walnut1 | 0 | 41,047,232,017 | 24.41% | ||
samminator | 0 | 7,307,511,823 | 10% | ||
locikll | 0 | 2,720,051,695 | 8.64% | ||
kjaeger | 0 | 54,089,432 | 50% | ||
mahdiyari | 0 | 16,701,350,813 | 10% | ||
lorenzor | 0 | 5,722,982,679 | 50% | ||
aboutyourbiz | 0 | 818,819,414 | 4.32% | ||
alexander.alexis | 0 | 9,994,891,417 | 20% | ||
howtostartablog | 0 | 91,375,049 | 0.43% | ||
jayna | 0 | 501,080,482 | 0.64% | ||
suesa | 0 | 105,498,184,675 | 25% | ||
cryptokrieg | 0 | 758,948,807 | 4.32% | ||
rival | 0 | 1,935,940,086 | 2% | ||
slickhustler007 | 0 | 169,266,644 | 2.16% | ||
corsica | 0 | 8,518,288,751 | 20% | ||
makrotheblack | 0 | 88,903,706 | 2.16% | ||
allcapsonezero | 0 | 2,104,173,068 | 2.16% | ||
drorion | 0 | 8,426,506,310 | 100% | ||
howo | 0 | 55,649,459,052 | 10% | ||
tsoldovieri | 0 | 1,450,106,492 | 10% | ||
artistslatam | 0 | 549,646,996 | 100% | ||
nitego | 0 | 492,999,495 | 1.29% | ||
bachuslib | 0 | 20,546,606,220 | 100% | ||
hotsteam | 0 | 3,380,173,026 | 10% | ||
neumannsalva | 0 | 601,808,119 | 2.16% | ||
wargof | 0 | 189,934,032 | 10% | ||
abigail-dantes | 0 | 350,378,623,262 | 20% | ||
tykee | 0 | 13,446,898,177 | 24.41% | ||
esteemguy | 0 | 135,084,324 | 20% | ||
steemitri | 0 | 76,926,753,563 | 60% | ||
zonguin | 0 | 1,224,197,994 | 5% | ||
g0nr0gue | 0 | 77,090,479 | 2.16% | ||
alexzicky | 0 | 5,488,495,180 | 5% | ||
mountain.phil28 | 0 | 3,583,297,918 | 25% | ||
jasonbu | 0 | 10,201,478,611 | 25% | ||
thehulk07 | 0 | 427,552,363 | 2.16% | ||
coolbuddy | 0 | 0 | 1% | ||
muliadi | 0 | 63,634,021 | 2.16% | ||
tuoficinavirtual | 0 | 78,491,766 | 25% | ||
tanyaschutte | 0 | 80,734,106 | 2% | ||
iamphysical | 0 | 14,356,938,738 | 90% | ||
kingswisdom | 0 | 65,400,799 | 10% | ||
zest | 0 | 3,751,886,948 | 10% | ||
felixrodriguez | 0 | 1,082,275,837 | 10% | ||
aafeng | 0 | 83,272,717,782 | 90% | ||
revo | 0 | 1,844,235,186 | 2.16% | ||
azulear | 0 | 454,884,000 | 100% | ||
silviu93 | 0 | 6,337,959,559 | 24.41% | ||
psicoluigi | 0 | 300,597,691 | 50% | ||
mr-aaron | 0 | 92,786,973 | 10% | ||
dakeshi | 0 | 1,261,193,423 | 24.41% | ||
massivevibration | 0 | 3,242,150,808 | 5% | ||
accelerator | 0 | 17,769,169,270 | 1.11% | ||
eurodale | 0 | 174,663,438 | 2.16% | ||
reaverza | 0 | 1,232,054,927 | 15% | ||
clweeks | 0 | 200,127,988 | 2.59% | ||
eastmael | 0 | 7,847,846,876 | 50% | ||
piaristmonk | 0 | 43,641,831,202 | 100% | ||
dokter-purnama | 0 | 257,855,476 | 2.16% | ||
espoem | 0 | 99,000,408,885 | 51.12% | ||
erikkun28 | 0 | 0 | 1% | ||
mcfarhat | 0 | 37,148,452,199 | 21.07% | ||
jubei333 | 0 | 148,051,274 | 2.16% | ||
jlsplatts | 0 | 200,794,656 | 0.64% | ||
poodai | 0 | 140,725,931 | 2.16% | ||
markmorbidity | 0 | 93,492,250 | 2.16% | ||
vishalsingh4997 | 0 | 217,023,579 | 24.41% | ||
emdesan | 0 | 140,728,283 | 10% | ||
peaceandwar | 0 | 591,987,998 | 2.16% | ||
mathias240 | 0 | 21,435,021,977 | 100% | ||
enzor | 0 | 253,569,119 | 10% | ||
loshcat | 0 | 2,559,820,113 | 100% | ||
steem-plus | 0 | 102,595,331,232 | 6.5% | ||
pataty69 | 0 | 13,264,845,004 | 20% | ||
joendegz | 0 | 87,839,057 | 2.16% | ||
elear | 0 | 7,849,593,819 | 48.83% | ||
zoneboy | 0 | 21,009,198,646 | 100% | ||
carlos84 | 0 | 5,461,635,814 | 100% | ||
gra | 0 | 7,714,220,762 | 20% | ||
che-shyr | 0 | 732,846,622 | 50% | ||
utopian-io | 0 | 67,782,416,943,692 | 48.83% | ||
shammi | 0 | 3,147,790,280 | 50% | ||
shayekh2 | 0 | 91,250,115 | 50% | ||
agbona | 0 | 113,108,199 | 5% | ||
jaff8 | 0 | 114,559,339,420 | 52.69% | ||
ykdesign | 0 | 316,265,995 | 2.16% | ||
pinksteam | 0 | 1,112,709,769 | 10% | ||
aalok | 0 | 104,917,520 | 26% | ||
nicole-st | 0 | 426,278,680 | 2.16% | ||
teukurival | 0 | 156,038,102 | 2.16% | ||
drmake | 0 | 2,325,751,663 | 2.16% | ||
newsrx | 0 | 106,446,293 | 8.02% | ||
guga34 | 0 | 492,101,565 | 15% | ||
pechichemena | 0 | 74,936,698 | 0.86% | ||
amestyj | 0 | 2,453,293,053 | 50% | ||
sandracarrascal | 0 | 385,238,200 | 100% | ||
skycae | 0 | 538,556,787 | 4.32% | ||
ajayyy | 0 | 5,605,127,049 | 100% | ||
greenorange | 0 | 547,962,399 | 100% | ||
mesafe | 0 | 3,124,321,769 | 40% | ||
xanderslee | 0 | 201,584,281 | 4.32% | ||
kenadis | 0 | 4,501,942,689 | 20% | ||
maticpecovnik | 0 | 2,901,420,655 | 8% | ||
iqbaladan | 0 | 10,292,151,151 | 48.83% | ||
robotics101 | 0 | 1,916,313,617 | 20% | ||
tristan-muller | 0 | 79,700,470 | 20% | ||
mcyusuf | 0 | 3,320,292,085 | 24.41% | ||
alexs1320 | 0 | 18,211,630,900 | 10% | ||
gentleshaid | 0 | 8,035,930,849 | 10% | ||
thescubageek | 0 | 213,977,971 | 2.16% | ||
rantar | 0 | 142,693,059,727 | 100% | ||
fejiro | 0 | 215,823,986 | 10% | ||
lostmine27 | 0 | 11,828,471,881 | 25% | ||
danaedwards | 0 | 356,212,636 | 4.32% | ||
ivymalifred | 0 | 1,762,484,069 | 50% | ||
sco | 0 | 17,188,367,046 | 20% | ||
aussieninja | 0 | 8,954,403,876 | 24.41% | ||
douglimarbalzan | 0 | 371,102,066 | 100% | ||
ennyta | 0 | 814,172,776 | 50% | ||
hkmoon | 0 | 80,040,945 | 2.16% | ||
rharphelle | 0 | 718,300,309 | 25% | ||
build2-casole | 0 | 28,821,350 | 100% | ||
stahlberg | 0 | 928,730,413 | 2.16% | ||
gabrielatravels | 0 | 207,675,362 | 1.08% | ||
cordeta | 0 | 75,201,536 | 2.16% | ||
reizak | 0 | 334,037,536 | 1.72% | ||
dedicatedguy | 0 | 43,293,460,774 | 100% | ||
zlatkamrs | 0 | 222,855,675 | 4.1% | ||
creatrixity | 0 | 56,911,650 | 2.16% | ||
amosbastian | 0 | 165,512,332,367 | 52.69% | ||
eliaschess333 | 0 | 9,067,660,900 | 50% | ||
shoganaii | 0 | 185,369,024 | 10% | ||
darkiche | 0 | 76,499,013 | 10% | ||
tdre | 0 | 81,275,849,750 | 100% | ||
ydavgonzalez | 0 | 23,989,739,979 | 100% | ||
payger | 0 | 120,352,096 | 2.16% | ||
langford | 0 | 354,066,141 | 20% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
asaj | 0 | 17,627,282,367 | 100% | ||
mathowl | 0 | 4,363,064,491 | 10% | ||
shinedojo | 0 | 407,648,101 | 4.32% | ||
gaming.yer | 0 | 403,349,485 | 100% | ||
scienceangel | 0 | 67,635,769,309 | 50% | ||
jjay | 0 | 500,790,750 | 100% | ||
baycan | 0 | 1,287,644,141 | 20% | ||
steem-familia | 0 | 402,027,955 | 100% | ||
lacher-prise | 0 | 189,666,127 | 10% | ||
terrylovejoy | 0 | 3,539,981,370 | 8% | ||
vanarchist | 0 | 2,838,523,518 | 100% | ||
jcalero | 0 | 141,076,013 | 4.32% | ||
wisewoof | 0 | 118,935,979 | 2.16% | ||
neneandy | 0 | 4,688,941,935 | 4.32% | ||
luisal314 | 0 | 256,253,724 | 100% | ||
olajidekehinde | 0 | 81,581,696 | 10% | ||
real2josh | 0 | 152,764,946 | 10% | ||
steepup | 0 | 335,823,098 | 8% | ||
reavercois | 0 | 0 | 5% | ||
gribouille | 0 | 506,841,594 | 20% | ||
sargoon | 0 | 1,081,440,665 | 24.41% | ||
traviseric | 0 | 175,429,615 | 50% | ||
tobias-g | 0 | 36,179,682,069 | 10% | ||
yrmaleza | 0 | 367,108,099 | 50% | ||
stemng | 0 | 6,605,325,488 | 10% | ||
mininthecity | 0 | 158,755,187 | 3.45% | ||
edprivat | 0 | 1,782,622,274 | 0.15% | ||
pozyton | 0 | 2,459,076,635 | 100% | ||
trixie | 0 | 70,637,658 | 10% | ||
kingabesh | 0 | 507,427,616 | 10% | ||
evangelista.yova | 0 | 398,041,636 | 100% | ||
miguelangel2801 | 0 | 769,379,809 | 50% | ||
josephace135 | 0 | 20,749,489,185 | 100% | ||
isisfemale | 0 | 193,508,000 | 100% | ||
didic | 0 | 2,649,037,444 | 2.16% | ||
warpedpoetic | 0 | 1,153,680,077 | 4.32% | ||
jenniferjulieth | 0 | 366,464,876 | 100% | ||
operahoser | 0 | 229,233,728 | 0.64% | ||
semihbalkanli | 0 | 396,465,888 | 50% | ||
joaorafael | 0 | 1,475,065,691 | 75% | ||
emiliomoron | 0 | 3,636,333,039 | 50% | ||
dexterdev | 0 | 3,104,542,518 | 10% | ||
intellihandling | 0 | 2,276,395,595 | 50% | ||
turkishcrew | 0 | 23,223,663,368 | 100% | ||
oghie | 0 | 563,968,643 | 50% | ||
geopolis | 0 | 1,297,395,106 | 20% | ||
ajfernandez | 0 | 348,549,709 | 100% | ||
robertbira | 0 | 2,076,495,024 | 5% | ||
maxpatternman | 0 | 41,958,654,911 | 100% | ||
alexdory | 0 | 4,188,005,060 | 8% | ||
flugschwein | 0 | 4,571,268,715 | 19% | ||
benleemusic | 0 | 309,806,672 | 0.43% | ||
francostem | 0 | 2,740,474,213 | 20% | ||
ivan-g | 0 | 527,830,035 | 2.16% | ||
endopediatria | 0 | 692,947,227 | 20% | ||
tajstar | 0 | 63,206,497 | 100% | ||
croctopus | 0 | 1,389,482,139 | 100% | ||
fego | 0 | 38,862,906,030 | 52.69% | ||
sissyjill | 0 | 74,230,339 | 7% | ||
ingmarvin | 0 | 375,055,457 | 100% | ||
samanyolu | 0 | 70,677,736 | 20% | ||
emmanuel293 | 0 | 99,237,997 | 25% | ||
cryptofuwealth | 0 | 41,176,441 | 11% | ||
morbyjohn | 0 | 135,205,040 | 7% | ||
reazuliqbal | 0 | 40,660,532,504 | 25% | ||
alix96 | 0 | 366,611,893 | 100% | ||
ambitiouslife | 0 | 228,971,559 | 2.16% | ||
properfraction | 0 | 2,776,943,207 | 100% | ||
tomastonyperez | 0 | 10,830,124,673 | 50% | ||
inespereira | 0 | 295,421,158 | 75% | ||
jingis07 | 0 | 381,831,120 | 2.16% | ||
elvigia | 0 | 8,858,322,741 | 50% | ||
mindark | 0 | 553,753,797 | 100% | ||
scoora82 | 0 | 885,192,287 | 24% | ||
davenavarro | 0 | 4,971,006,873 | 100% | ||
qberry | 0 | 2,077,735,387 | 2.16% | ||
gabyoraa | 0 | 107,677,527 | 2.16% | ||
lesmouths-travel | 0 | 974,015,482 | 13% | ||
effofex | 0 | 72,249,454 | 0.55% | ||
luiscd8a | 0 | 1,519,546,878 | 80% | ||
eniolw | 0 | 339,961,044 | 5% | ||
de-stem | 0 | 7,649,471,187 | 19.8% | ||
elsll | 0 | 100,089,503 | 4.32% | ||
geadriana | 0 | 574,454,950 | 15% | ||
elpdl | 0 | 421,766,731 | 100% | ||
derbesserwisser | 0 | 1,415,534,826 | 100% | ||
bavi | 0 | 124,601,705 | 2.16% | ||
misia1979 | 0 | 375,543,656 | 2.16% | ||
josedelacruz | 0 | 4,580,739,325 | 50% | ||
joseangelvs | 0 | 1,744,603,857 | 100% | ||
sevecen | 0 | 352,935,721 | 100% | ||
viannis | 0 | 1,552,885,697 | 50% | ||
feronio | 0 | 879,317,488 | 100% | ||
flores39 | 0 | 373,857,694 | 100% | ||
majapesi | 0 | 248,868,881 | 50% | ||
menoski | 0 | 899,392,865 | 5% | ||
erickyoussif | 0 | 3,365,753,915 | 100% | ||
cansteem | 0 | 504,299,692 | 100% | ||
michaelwrites | 0 | 229,057,268 | 10% | ||
phage93 | 0 | 7,258,265,999 | 15% | ||
deholt | 0 | 981,163,167 | 20% | ||
archaimusic | 0 | 118,073,987 | 10% | ||
ryuna.siege | 0 | 208,767,007 | 100% | ||
veteranforcrypto | 0 | 1,391,534,422 | 4.32% | ||
smacommunity | 0 | 149,761,251 | 2.16% | ||
musicvoter | 0 | 3,329,257,804 | 1% | ||
techcoderx | 0 | 5,541,428,833 | 35% | ||
goodway | 0 | 135,284,338 | 1% | ||
nigerian-yogagal | 0 | 74,202,404 | 2.16% | ||
stevenwood | 0 | 78,684,615 | 2.16% | ||
temitayo-pelumi | 0 | 1,511,060,320 | 20% | ||
andrick | 0 | 438,597,686 | 50% | ||
yusvelasquez | 0 | 466,707,829 | 50% | ||
doctor-cog-diss | 0 | 299,975,914 | 20% | ||
alexworld | 0 | 252,579,063 | 25% | ||
gracelbm | 0 | 200,839,941 | 2.16% | ||
sportmen | 0 | 520,823,705 | 100% | ||
frost1903 | 0 | 45,277,543 | 50% | ||
avizor | 0 | 63,550,876 | 2.16% | ||
clayjohn | 0 | 6,307,621,595 | 100% | ||
acont | 0 | 249,201,017 | 50% | ||
niouton | 0 | 166,768,583 | 0.86% | ||
elimao | 0 | 371,059,645 | 100% | ||
schroders | 0 | 1,627,583,666 | 1.29% | ||
anaestrada12 | 0 | 15,925,254,568 | 100% | ||
trteam | 0 | 517,165,807 | 100% | ||
channel64 | 0 | 516,045,427 | 100% | ||
steemzeiger | 0 | 1,078,594,327 | 19.8% | ||
yorgermadison | 0 | 329,425,945 | 100% | ||
alexjunior | 0 | 341,114,669 | 100% | ||
bawativi | 0 | 251,885,290 | 50% | ||
antunez25 | 0 | 370,988,235 | 100% | ||
haf67 | 0 | 346,684,986 | 100% | ||
joelsegovia | 0 | 3,452,384,569 | 50% | ||
chavas | 0 | 386,380,777 | 100% | ||
longer | 0 | 184,988,382 | 50% | ||
kafupraise | 0 | 64,309,808 | 34% | ||
biomimi | 0 | 161,590,976 | 40% | ||
ibk-gabriel | 0 | 121,554,752 | 10% | ||
drsensor | 0 | 19,013,589,290 | 100% | ||
mirzantorres | 0 | 247,437,405 | 50% | ||
hhtb | 0 | 167,183,778 | 2.16% | ||
angelica7 | 0 | 642,882,178 | 0.21% | ||
ilovecryptopl | 0 | 548,799,294 | 3.45% | ||
purelyscience | 0 | 117,325,434 | 10% | ||
eglinson | 0 | 319,658,737 | 100% | ||
uzcateguiazambra | 0 | 377,350,974 | 100% | ||
yomismosoy | 0 | 243,577,910 | 50% | ||
casiloko | 0 | 189,857,027 | 50% | ||
bflanagin | 0 | 311,316,183 | 2.16% | ||
pagliozzo | 0 | 11,471,211,106 | 20% | ||
asmeira | 0 | 407,612,899 | 100% | ||
garrillo | 0 | 323,532,197 | 100% | ||
lillywilton | 0 | 613,849,917 | 20% | ||
mary11 | 0 | 339,081,873 | 75% | ||
hansmast | 0 | 286,100,688 | 2.16% | ||
dalz | 0 | 6,140,915,741 | 19.53% | ||
ulockblock | 0 | 39,565,308,794 | 12.46% | ||
acdream | 0 | 2,706,952,987 | 100% | ||
wstanley226 | 0 | 75,110,222 | 50% | ||
gpcx86 | 0 | 700,689,658 | 25% | ||
amart29 | 0 | 1,673,411,735 | 20% | ||
jk6276 | 0 | 8,024,918,371 | 24.41% | ||
veronicacoli | 0 | 211,968,581 | 100% | ||
andypalacios | 0 | 208,106,435 | 50% | ||
suasteguimichel | 0 | 65,889,923 | 50% | ||
yaelg | 0 | 2,483,196,223 | 5% | ||
luc.real | 0 | 92,501,047 | 60% | ||
pfernandezpetit | 0 | 331,173,489 | 100% | ||
mgarrillogonzale | 0 | 355,178,800 | 100% | ||
rubenp | 0 | 422,296,535 | 100% | ||
jeferc | 0 | 419,389,471 | 100% | ||
dssdsds | 0 | 3,594,148,063 | 24.41% | ||
jayplayco | 0 | 106,252,180,497 | 24.41% | ||
cryptouno | 0 | 505,902,536 | 5% | ||
clement.poiret | 0 | 237,117,004 | 4.32% | ||
tbtek | 0 | 77,737,401 | 25% | ||
fran.frey | 0 | 1,767,939,895 | 50% | ||
fabielblanchard | 0 | 211,995,133 | 100% | ||
mops2e | 0 | 606,445,453 | 40.89% | ||
jrevilla | 0 | 328,454,376 | 50% | ||
annaabi | 0 | 284,989,919 | 2.16% | ||
abraham10 | 0 | 63,409,204 | 82% | ||
munhenhos | 0 | 1,395,698,835 | 20% | ||
emperorhassy | 0 | 134,642,477 | 10% | ||
moniroy | 0 | 2,971,776,211 | 50% | ||
skorup87 | 0 | 22,115,100 | 12% | ||
swapsteem | 0 | 2,281,892,724 | 24.41% | ||
randomvlogs | 0 | 173,338,899 | 100% | ||
trang | 0 | 372,594,915 | 2.16% | ||
stem-espanol | 0 | 54,350,960,534 | 100% | ||
praditya | 0 | 626,330,866 | 24% | ||
zuur | 0 | 12,422,713,150 | 100% | ||
jacekw.dev | 0 | 3,641,698,674 | 100% | ||
bhaski | 0 | 1,542,367,638 | 20% | ||
yashshah991 | 0 | 65,937,248 | 50% | ||
rhethypo | 0 | 106,529,943 | 2.16% | ||
predict-crypto | 0 | 94,657,677 | 0.08% | ||
chickenmeat | 0 | 194,669,293 | 2.16% | ||
javier.dejuan | 0 | 4,601,793,895 | 20% | ||
coinbrew | 0 | 385,328,647 | 3.45% | ||
sciencetech | 0 | 138,343,508 | 2% | ||
faithfullwills | 0 | 65,673,640 | 85% | ||
hirally | 0 | 377,784,080 | 100% | ||
emynb | 0 | 325,557,797 | 100% | ||
fanta-steem | 0 | 1,410,749,458 | 30% | ||
reverseacid | 0 | 208,997,197 | 2.16% | ||
steem-ua | 0 | 822,592,030,665 | 8.02% | ||
giulyfarci52 | 0 | 986,391,790 | 50% | ||
semtroneum | 0 | 86,792,744 | 1.29% | ||
eu-id | 0 | 620,267,103 | 10% | ||
kaczynski | 0 | 139,830,939 | 100% | ||
alvin0617 | 0 | 234,429,504 | 2.16% | ||
stem.witness | 0 | 14,217,440,686 | 20% | ||
sarhugo | 0 | 119,867,697 | 2.16% | ||
arequipa | 0 | 281,041,068 | 100% | ||
criptoanarquista | 0 | 1,141,405,568 | 100% | ||
andiblok | 0 | 64,661,521 | 25% | ||
double-negative | 0 | 495,549,803 | 20% | ||
alex-hm | 0 | 930,951,043 | 50% | ||
leviackerman | 0 | 728,366,037 | 100% | ||
wilmer14molina | 0 | 446,496,167 | 100% | ||
eugenialobo | 0 | 379,906,149 | 100% | ||
ballesteroj | 0 | 337,054,549 | 100% | ||
jcmontilva | 0 | 389,512,819 | 100% | ||
rodriguezr | 0 | 352,887,072 | 100% | ||
marbely20 | 0 | 375,896,170 | 100% | ||
moyam | 0 | 422,881,956 | 100% | ||
emilycg | 0 | 350,646,234 | 100% | ||
darys | 0 | 390,724,619 | 100% | ||
sibaja | 0 | 394,472,341 | 100% | ||
balcej | 0 | 422,818,703 | 100% | ||
lmanjarres | 0 | 382,899,846 | 100% | ||
anaka | 0 | 420,588,781 | 100% | ||
benhurg | 0 | 422,885,700 | 100% | ||
judisa | 0 | 421,109,264 | 100% | ||
juddarivv | 0 | 422,883,210 | 100% | ||
mariamo | 0 | 365,352,524 | 100% | ||
kimmorales | 0 | 385,445,782 | 100% | ||
loraine25 | 0 | 375,317,445 | 100% | ||
josnieldavid | 0 | 540,271,048 | 100% | ||
kakakk | 0 | 292,396,269 | 2.16% | ||
mrsbozz | 0 | 657,461,937 | 25% | ||
ascorphat | 0 | 2,347,225,940 | 2.5% | ||
cameravisual | 0 | 2,640,074,168 | 50% | ||
amin-ove | 0 | 57,480,562 | 50% | ||
rewarding | 0 | 5,402,119,937 | 74.41% | ||
huilco | 0 | 261,576,792 | 100% | ||
hanyseek | 0 | 3,647,262 | 25% | ||
herculean | 0 | 63,278,952 | 50% | ||
bejust | 0 | 1,468,544,176 | 100% | ||
combatsports | 0 | 1,360,666,027 | 4.32% | ||
jk6276.mons | 0 | 1,440,147,691 | 48.83% | ||
jent | 0 | 1,556,713,866 | 70% | ||
progressing | 0 | 1,324,719,424 | 100% | ||
jaxson2011 | 0 | 1,883,484,655 | 48.83% | ||
cristhianarturo | 0 | 32,610,101 | 100% | ||
donasys | 0 | 60,648,409 | 50% | ||
mtfmohammad | 0 | 95,468,945 | 25% | ||
cleiver | 0 | 50,295,265 | 50% | ||
lujuria | 0 | 282,440,429 | 100% | ||
chrisluke | 0 | 98,764,511 | 26% | ||
joannar | 0 | 75,162,807 | 25% | ||
pflanzenlilly | 0 | 190,415,763 | 50% | ||
eternalinferno | 0 | 243,948,757 | 48.83% | ||
faberleggenda | 0 | 270,051,128 | 100% | ||
mohaaking | 0 | 59,040,157 | 50% | ||
utopian.trail | 0 | 19,532,429,836 | 48.83% | ||
bigmoneyman | 0 | 352,717,387 | 2.16% | ||
sam-dmc | 0 | 211,784,196 | 100% | ||
smvenezuela | 0 | 283,258,785 | 100% |
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)
author | channel64 |
---|---|
permlink | re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190322t091158351z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/programming/@channel64/developing-kubernetes-services-at-airbnb-scale-melanie-cebul"],"app":"steemit/0.1"} |
created | 2019-03-22 09:11:57 |
last_update | 2019-03-22 09:11:57 |
depth | 1 |
children | 1 |
last_payout | 2019-03-29 09:11:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 669,246,752 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,725,200 |
net_rshares | 0 |
I don't appreciate you using a bot to post the same thing on multiple posts.
author | tensor |
---|---|
permlink | re-channel64-re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190322t222214413z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-22 22:22:15 |
last_update | 2019-03-22 22:22:15 |
depth | 2 |
children | 0 |
last_payout | 2019-03-29 22:22:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 87,856,203,149,624 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,762,422 |
net_rshares | 0 |
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/)
author | rosatravels |
---|---|
permlink | re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t072326083z |
category | utopian-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"} |
created | 2019-03-19 07:23:27 |
last_update | 2019-03-19 07:23:27 |
depth | 1 |
children | 1 |
last_payout | 2019-03-26 07:23:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.396 HBD |
curator_payout_value | 2.336 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 790 |
author_reputation | 422,827,447,688,168 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,556,787 |
net_rshares | 14,321,177,355,549 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 23,397,472,920 | 100% | ||
lordneroo | 0 | 47,296,227,571 | 50% | ||
codingdefined | 0 | 21,440,172,264 | 14.67% | ||
espoem | 0 | 31,164,384,549 | 15% | ||
utopian-io | 0 | 14,051,280,073,303 | 10.15% | ||
jaff8 | 0 | 35,916,220,731 | 14.67% | ||
amosbastian | 0 | 52,032,814,423 | 14.67% | ||
reazuliqbal | 0 | 13,709,352,333 | 8% | ||
ulockblock | 0 | 22,707,566,413 | 6.68% | ||
ascorphat | 0 | 2,308,441,577 | 2.5% | ||
yff | 0 | 19,593,198,904 | 100% | ||
curatortrail | 0 | 331,430,561 | 95% |
Thank you for your review, @rosatravels! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t072326083z-20190321t130908z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-21 13:09:12 |
last_update | 2019-03-21 13:09:12 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 13:09:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,678,205 |
net_rshares | 0 |
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.
author | steem-plus |
---|---|
permlink | using-flare-to-build-vector-graphics-and-animations-in-flutter---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-03-18 19:24:48 |
last_update | 2019-03-18 19:24:48 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 19:24:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 432 |
author_reputation | 247,952,188,232,400 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,532,361 |
net_rshares | 0 |
#### 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)**
author | steem-ua |
---|---|
permlink | re-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t073833z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-19 07:38:33 |
last_update | 2019-03-19 07:38:33 |
depth | 1 |
children | 0 |
last_payout | 2019-03-26 07:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 23,214,230,978,060 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,557,237 |
net_rshares | 0 |
<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>
author | steemstem |
---|---|
permlink | re-tensor-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190318t220427055z |
category | utopian-io |
json_metadata | {"app":"bloguable-bot"} |
created | 2019-03-18 22:04:30 |
last_update | 2019-03-18 22:04:30 |
depth | 1 |
children | 0 |
last_payout | 2019-03-25 22:04:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 800 |
author_reputation | 262,017,435,115,313 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,539,425 |
net_rshares | 739,152,603 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lolicorn | 0 | 739,152,603 | 10% |
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>
author | utopian-io |
---|---|
permlink | re-using-flare-to-build-vector-graphics-and-animations-in-flutter-20190319t105549z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-19 10:55:51 |
last_update | 2019-03-19 10:55:51 |
depth | 1 |
children | 0 |
last_payout | 2019-03-26 10:55:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 588 |
author_reputation | 152,955,367,999,756 |
root_title | "Using Flare to Build Vector Graphics and Animations in Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,565,782 |
net_rshares | 0 |