One of the advantages of being a developer making your own games is that you have full control over the outcome. You control how a certain element functions or how an enemy character behaves. You can even control the (in-game) world and play around with the physical rules like gravity.  With this kind of freedom though, most beginner developers find it hard to establish a structure when developing games along with the UI that goes with it. ## Standard structure It seems that **there’s no standard structure** when it comes to game development with [Flame](https://flame-engine.org/) and [Flutter](https://flutter.dev/). The closest thing to it is simply feeding the main game class’ `.widget`property directly into `runApp`. This setup is perfect for simple “tap-tap” games and the hyper-casual games like [Langaw](https://github.com/japalekhin/langaw).  Here’s an example `./lib/main.js` from **Shadow Training**. ``` import 'package:flame/flame.dart'; import 'package:flutter/gestures.dart'; import 'package:flutter/services.dart'; import 'package:flutter/widgets.dart'; import 'package:shadow_training/shadow-training.dart'; void main() async { await Flame.util.fullScreen(); await Flame.util.setOrientation(DeviceOrientation.portraitUp); await Flame.images.loadAll([ 'background.png', 'boxer/dizzy.png', 'boxer/idle.png', 'boxer/punch-left.png', 'boxer/punch-right.png', 'boxer/punch-up.png', ]); ShadowTraining game = ShadowTraining(); runApp(game.widget); TapGestureRecognizer tapper = TapGestureRecognizer(); tapper.onTapDown = game.onTapDown; Flame.util.addGestureRecognizer(tapper); } ``` If a game has been released for a while, chances are, there are going to be updates. These updates most probably present more features. As the number of features grows, the game will be needing **UI (user-interface) elements**. UI elements help the players connect, understand, and interact with the game. Examples of UI elements include the score display, health bar, settings dialog box, exit button, play button. In fact, even the simplest game (except maybe the [Box Game](https://github.com/japalekhin/boxgame)) needs to have at least a play button or a score display. This presents a problem with the “standard structure” as this would mean building the UI manually. **The developer has to write everything**. Rendering managing states and screens, **and animation**. Again, as long the game is simple, this can be bearable to manually write. The moment your game gets more complex than a game that can be described as dead simple, this becomes an easy source of a headache (_based on personal experience_). ## Taking advantage of the widget-tree Let me introduce Flutter, no wait, we’re already developing in Flutter. When developing games using Flame, it’s easy to forget that we’re still developing apps using Flutter. Flutter is actually a framework designed for business mobile app development. The type of apps that aren’t really that graphical, just some nice looking buttons, lists, labels, checkboxes, input controls. Maybe some basic animation and transition effects. One of the things that are very easy to do in Flutter is UI. Exactly those elements we need for our game but too troublesome to write on our own. **Let’s take advantage of this** A Flame game is still rendered inside a widget (`Game`‘s `.widget`property). If we put this game widget in a `Stack`, we can easily build UI elements on top of it.  Here’s the same code from **Shadow Training**‘s `./lib/main.dart`; but this time the game widget is enclosed in a `MaterialApp` widget (for possible navigation or routing between screens in the future). ``` import 'package:flame/flame.dart'; import 'package:flutter/services.dart'; import 'package:flutter/material.dart'; import 'package:shadow_training/shadow-training-ui.dart'; import 'package:shadow_training/shadow-training.dart'; import 'package:shared_preferences/shared_preferences.dart'; void main() async { await Flame.util.fullScreen(); await Flame.util.setOrientation(DeviceOrientation.portraitUp); await Flame.images.loadAll([ 'background.png', 'boxer/dizzy.png', 'boxer/idle.png', 'boxer/punch-left.png', 'boxer/punch-right.png', 'boxer/punch-up.png', 'markers.png', 'perfect-time.png', ]); SharedPreferences storage = await SharedPreferences.getInstance(); ShadowTrainingUI gameUI = ShadowTrainingUI(); ShadowTraining game = ShadowTraining(gameUI.state); gameUI.state.storage = storage; gameUI.state.game = game; runApp( MaterialApp( title: 'Shadow Training', theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold( body: Stack( fit: StackFit.expand, children: [ Positioned.fill( child: GestureDetector( behavior: HitTestBehavior.opaque, onTapDown: game.onTapDown, child: game.widget, ), ), Positioned.fill( child: gameUI, ), ], ), ), debugShowCheckedModeBanner: false, ), ); } ``` The main difference here is instead of passing `game.widget` directly to `runApp`, we pass a `MaterialApp` first. This `MaterialApp` has a `Scaffold` as its `home` property (which is basically the child widget that will be shown when starting the app). The `Scaffold` in turn, has a `Stack` as its body. This `Stack` has two `Positioned.fill` widgets as its children. This is just to make sure that whatever gets assigned as their children will take up the entire screen. One has the `game.widget`, the other has `gameUI` which is a `ShadowTrainingUI`. It’s a class that extends a `StatefulWidget`. ## Performance and drawbacks As I was developing and testing the game, I checked and kept an eye on the performance every step of the way. There’s actually a commented out code that prints out the real-time FPS of the game and this is what I’ve been monitoring. The whole time I was close to 60 FPS. https://www.youtube.com/watch?v=e5kcADlFWt8 That being said, there were no noticeable performance issues seen during these tests. So having the widget inside a `MaterialApp` in the widget tree while running the game is fine within a Flame game. Of course, this can’t all be good. There are some drawbacks like the need to expose the state in the widget so you can pass it on the to the game class. This is important in order to update the state of the UI from the game class. A two-way communication system between the game and the UI class is important as you will probably need to write code on each side that changes things on the other side. This can be a tricky situation but can be solved by writing the classes so they have instance variables that hold the reference to the other. Another way is to have a globally accessible singleton class that has references to both the main game class and the UI class. ## Conclusion Based on my experience developing games using Flame and Flutter, I have found out that having a regular widget tree in a game is generally good practice. Buttons, text, dialog boxes, text input, and other UI elements become significantly easier to create. There’s no set-back on performance and the only thing tricky to set up is the communication between the game and the UI class. If you have any questions, please leave a comment below or ask me by joining [my Discord server](https://discord.gg/SNvNfas). Shadow Training is an open-source game that can be found [on GitHub](https://github.com/japalekhin/shadow-training).
author | japalekhin |
---|---|
permlink | setting-up-a-widget-tree-based-game-with-flame-and-flutter |
category | originalworks |
json_metadata | {"tags":["originalworks","development","games","flutter","android"],"image":["https://jap.alekhin.io/wp-content/uploads/2019/05/setup-widget-tree-flame-flutter-game.jpg","https://jap.alekhin.io/wp-content/uploads/2019/05/langaw.jpg","https://jap.alekhin.io/wp-content/uploads/2019/05/shadow-training-dialog.jpg","https://img.youtube.com/vi/e5kcADlFWt8/0.jpg"],"links":["https://flame-engine.org/","https://flutter.dev/","https://github.com/japalekhin/langaw","https://github.com/japalekhin/boxgame","https://www.youtube.com/watch?v=e5kcADlFWt8","https://discord.gg/SNvNfas","https://github.com/japalekhin/shadow-training"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-05-11 20:32:42 |
last_update | 2019-05-11 20:32:42 |
depth | 0 |
children | 5 |
last_payout | 2019-05-18 20:32:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.760 HBD |
curator_payout_value | 3.519 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,959 |
author_reputation | 2,100,519,034,865 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,682,089 |
net_rshares | 27,388,505,875,699 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 936,990,698,670 | 16.8% | ||
tombstone | 0 | 2,842,207,228,672 | 11.2% | ||
lola-carola | 0 | 5,631,244,188 | 28% | ||
eric-boucher | 0 | 102,526,202,531 | 28% | ||
anwenbaumeister | 0 | 3,042,927,560 | 56% | ||
expanse | 0 | 859,406,985 | 28% | ||
raymondspeaks | 0 | 1,305,808,237 | 28% | ||
coinmaster4you | 0 | 372,255,898 | 28% | ||
joshglen | 0 | 264,375,974 | 56% | ||
psygambler | 0 | 3,814,393,242 | 28% | ||
anarcist69 | 0 | 247,925,936 | 5.6% | ||
whoib | 0 | 608,071,737 | 70% | ||
curie | 0 | 17,698,305,868,300 | 56% | ||
landria | 0 | 597,216,147 | 28% | ||
hendrikdegrote | 0 | 740,055,972,253 | 56% | ||
vact | 0 | 1,072,845,116,877 | 56% | ||
deearchi | 0 | 174,442,825 | 50.4% | ||
dashfit | 0 | 6,478,402,091 | 28% | ||
vaughnelric | 0 | 227,576,266 | 28% | ||
gangstayid | 0 | 1,849,392,242 | 28% | ||
kauslevi | 0 | 182,196,786 | 28% | ||
responsive | 0 | 201,820,292 | 56% | ||
networker5 | 0 | 809,503,030 | 28% | ||
vodonik | 0 | 323,036,550 | 18.48% | ||
lenin-mccarthy | 0 | 280,091,894 | 28% | ||
resteemer | 0 | 598,506,272 | 16.8% | ||
boynashruddin | 0 | 851,774,566 | 28% | ||
gmedley | 0 | 4,476,020,269 | 28% | ||
jan-mccomas | 0 | 714,084,750 | 28% | ||
dyancuex | 0 | 75,895,822 | 28% | ||
diebaasman | 0 | 2,413,788,507 | 12% | ||
ljpaez | 0 | 78,049,670 | 28% | ||
cryptophunk | 0 | 107,076,548 | 28% | ||
goldkeys | 0 | 1,131,918,791 | 28% | ||
moksamol | 0 | 6,126,573,092 | 28% | ||
hiroyukikomiya | 0 | 117,006,794 | 28% | ||
getrichordie | 0 | 2,441,028,825 | 28% | ||
thatsweeneyguy | 0 | 2,090,006,795 | 28% | ||
szokerobert | 0 | 2,119,559,082 | 11.2% | ||
jdc | 0 | 180,880,606 | 5.6% | ||
jacalf | 0 | 386,561,416 | 56% | ||
lotfiuser | 0 | 101,065,388 | 28% | ||
iansart | 0 | 17,166,660,198 | 28% | ||
mrstaf | 0 | 949,941,920 | 28% | ||
elowin | 0 | 163,319,488 | 80% | ||
pipks | 0 | 86,443,354 | 28% | ||
jiujitsu | 0 | 24,498,707,776 | 28% | ||
rishadhaque | 0 | 89,348,736 | 28% | ||
khunfarang | 0 | 94,269,327 | 28% | ||
lekang | 0 | 8,159,983,174 | 28% | ||
improv | 0 | 623,133,389 | 0.56% | ||
galberto | 0 | 577,307,396 | 2.24% | ||
khunpoom | 0 | 123,688,893 | 28% | ||
lrsm13 | 0 | 350,894,837 | 16.8% | ||
carolynseymour | 0 | 446,662,396 | 28% | ||
christianolu | 0 | 163,036,237 | 28% | ||
minnowsupport | 0 | 116,544,589,425 | 3% | ||
zerotoone | 0 | 5,924,146,738 | 28% | ||
steemanator | 0 | 227,252,474 | 56% | ||
aboutyourbiz | 0 | 11,007,243,204 | 56% | ||
numundo | 0 | 148,247,345 | 5.6% | ||
pablocordero | 0 | 81,989,733 | 28% | ||
giuato | 0 | 2,528,568,758 | 28% | ||
howtostartablog | 0 | 1,380,735,297 | 5.6% | ||
jonmagnusson | 0 | 2,556,223,532 | 14% | ||
theironfelix | 0 | 827,527,325 | 28% | ||
ghostgtr | 0 | 73,519,881 | 1.12% | ||
jayna | 0 | 7,032,389,135 | 8.4% | ||
sirjaxxy | 0 | 1,178,619,091 | 28% | ||
cryptokrieg | 0 | 10,700,444,406 | 56% | ||
rival | 0 | 2,214,736,597 | 2% | ||
tensor | 0 | 37,158,214,743 | 28% | ||
riche-gould | 0 | 1,432,768,048 | 28% | ||
dysc0rd | 0 | 170,625,537 | 56% | ||
slickhustler007 | 0 | 1,680,032,886 | 28% | ||
yahman | 0 | 78,727,415 | 28% | ||
semasping | 0 | 382,962,114 | 28% | ||
makrotheblack | 0 | 1,837,342,901 | 28% | ||
ckcryptoinvest | 0 | 158,105,778 | 28% | ||
flatman | 0 | 3,429,757,620 | 56% | ||
nolasco | 0 | 519,934,412 | 2.8% | ||
nazasaad2000 | 0 | 263,837,949 | 56% | ||
allcapsonezero | 0 | 28,008,965,341 | 28% | ||
gambit.coin | 0 | 728,874,126 | 56% | ||
tsoldovieri | 0 | 780,925,003 | 5.6% | ||
bluemoon | 0 | 15,775,068,007 | 56% | ||
nitego | 0 | 1,775,441,352 | 16.8% | ||
mseuno | 0 | 200,933,656 | 56% | ||
hotsteam | 0 | 3,457,569,315 | 10% | ||
neumannsalva | 0 | 9,044,556,943 | 28% | ||
dwingsworld | 0 | 116,109,781 | 2.8% | ||
haji | 0 | 84,292,011 | 0.28% | ||
phogyan | 0 | 1,700,964,912 | 28% | ||
brazilijus | 0 | 116,373,137 | 28% | ||
misterakpan | 0 | 126,007,098 | 2.8% | ||
kofspades | 0 | 314,626,586 | 28% | ||
azisjesika | 0 | 138,997,086 | 28% | ||
tfame3865 | 0 | 1,822,130,147 | 11.2% | ||
onethousandwords | 0 | 911,256,692 | 28% | ||
tekendra | 0 | 116,565,266 | 28% | ||
alexandrafv | 0 | 129,852,999 | 28% | ||
sanderdieryck | 0 | 760,587,447 | 28% | ||
muliadi | 0 | 724,017,366 | 28% | ||
fujiwara | 0 | 78,521,210 | 56% | ||
tomcruse | 0 | 116,064,521 | 28% | ||
tanyaschutte | 0 | 236,547,224 | 5.6% | ||
weirdheadaches | 0 | 295,635,158 | 2.1% | ||
life.goals | 0 | 206,063,282 | 56% | ||
tradeownsystems | 0 | 188,613,495 | 56% | ||
felixrodriguez | 0 | 1,610,823,786 | 28% | ||
aaronleang | 0 | 3,350,371,122 | 3% | ||
sublimenonsense | 0 | 366,088,536 | 28% | ||
mustika | 0 | 116,506,147 | 28% | ||
dxdei | 0 | 237,920,092 | 56% | ||
shippou95 | 0 | 336,444,615 | 28% | ||
viralfever | 0 | 86,611,438 | 28% | ||
gabox | 0 | 203,192,639 | 2.8% | ||
bleyker | 0 | 188,173,451 | 56% | ||
revo | 0 | 21,970,489,020 | 28% | ||
azulear | 0 | 90,910,919 | 28% | ||
runningman | 0 | 407,314,468 | 28% | ||
hkabir62 | 0 | 90,856,111 | 28% | ||
plojslydia | 0 | 116,798,386 | 56% | ||
marzukie | 0 | 86,416,937 | 28% | ||
aidarojaswriter | 0 | 171,657,795 | 2.8% | ||
massivevibration | 0 | 3,153,678,179 | 5% | ||
onartbali | 0 | 782,343,125 | 5.6% | ||
eurodale | 0 | 3,100,864,328 | 28% | ||
olayemzeecool | 0 | 82,615,858 | 28% | ||
safril21 | 0 | 116,507,303 | 28% | ||
reaverza | 0 | 1,238,616,772 | 15% | ||
cooknbake | 0 | 1,212,931,305 | 11.2% | ||
anna-mi | 0 | 483,657,211 | 28% | ||
clweeks | 0 | 3,118,172,156 | 33.6% | ||
molamola | 0 | 422,808,498 | 28% | ||
marysent | 0 | 224,985,010 | 5.6% | ||
click3rs | 0 | 671,985,041 | 28% | ||
maxruebensal | 0 | 353,523,733 | 28% | ||
marehalm | 0 | 866,019,485 | 56% | ||
circleoffriends | 0 | 347,649,651 | 28% | ||
profnuhu | 0 | 146,251,297 | 28% | ||
smafey | 0 | 147,414,022 | 28% | ||
paddygsound | 0 | 729,492,018 | 28% | ||
marialefleitas | 0 | 45,072,954 | 28% | ||
damzxyno | 0 | 189,563,086 | 16.8% | ||
ckbahdon | 0 | 154,318,201 | 28% | ||
dokter-purnama | 0 | 3,993,686,441 | 28% | ||
alexanderrigov | 0 | 933,895,121 | 28% | ||
jakesdewet | 0 | 862,859,164 | 56% | ||
derekvonzarovich | 0 | 797,001,300 | 28% | ||
cryptononymous | 0 | 7,100,422,946 | 28% | ||
snowstorm231 | 0 | 148,107,954 | 42% | ||
collennes | 0 | 116,507,303 | 28% | ||
afrikablr | 0 | 190,317,939 | 5.6% | ||
gotgame | 0 | 1,168,704,802 | 28% | ||
jlsplatts | 0 | 3,679,946,680 | 8.4% | ||
mayowadavid | 0 | 2,341,098,685 | 28% | ||
pipbypip | 0 | 86,413,315 | 28% | ||
kike313 | 0 | 76,017,059 | 28% | ||
poodai | 0 | 2,737,986,158 | 28% | ||
imamalkimas | 0 | 160,823,168 | 56% | ||
markmorbidity | 0 | 1,880,771,277 | 28% | ||
bobtucks | 0 | 72,329,678 | 28% | ||
pat9 | 0 | 185,682,541 | 56% | ||
cmbugua | 0 | 78,597,227 | 28% | ||
helyorsini | 0 | 127,207,219 | 28% | ||
mehmood786 | 0 | 116,164,757 | 28% | ||
emdesan | 0 | 139,842,584 | 10% | ||
happychild | 0 | 959,647,492 | 28% | ||
smartlip | 0 | 105,797,616 | 28% | ||
peaceandwar | 0 | 9,084,332,314 | 28% | ||
enzor | 0 | 1,868,526,268 | 56% | ||
rmz | 0 | 302,742,289 | 28% | ||
silasvogt | 0 | 239,839,588 | 44.8% | ||
puggle | 0 | 84,896,971 | 16.8% | ||
anonymous13 | 0 | 220,959,481 | 56% | ||
joendegz | 0 | 4,057,778,507 | 28% | ||
hrovat66 | 0 | 94,218,887 | 28% | ||
priybrata | 0 | 116,357,399 | 28% | ||
david-grant | 0 | 113,733,754 | 28% | ||
lwih.eiei | 0 | 116,507,303 | 28% | ||
digitalpnut | 0 | 795,991,274 | 28% | ||
kimchi-king | 0 | 684,935,723 | 28% | ||
zulfan88 | 0 | 73,058,908 | 56% | ||
hara7 | 0 | 106,700,821 | 28% | ||
f20170200 | 0 | 116,822,405 | 28% | ||
gauttam | 0 | 352,188,317 | 28% | ||
hasim5164 | 0 | 78,348,100 | 28% | ||
grafflinz | 0 | 116,126,399 | 28% | ||
abeyaimary | 0 | 443,301,560 | 28% | ||
mslily | 0 | 114,628,322 | 28% | ||
timbicktwo | 0 | 116,555,785 | 28% | ||
bridgetdaniels | 0 | 188,494,647 | 56% | ||
hectgranate | 0 | 683,507,364 | 14% | ||
edmundang | 0 | 273,940,857 | 11.2% | ||
mdsaifultop | 0 | 116,882,187 | 28% | ||
wandersells | 0 | 408,480,084 | 28% | ||
superstar65 | 0 | 219,784,716 | 56% | ||
imisstheoldkanye | 0 | 1,769,036,936 | 1% | ||
shayekh2 | 0 | 78,971,339 | 50% | ||
bluntsmasha | 0 | 243,880,843 | 2.8% | ||
masud222 | 0 | 142,362,366 | 28% | ||
pinksteam | 0 | 1,139,166,324 | 10% | ||
pipo092281 | 0 | 81,697,541 | 28% | ||
senorcoconut | 0 | 662,523,160 | 2.8% | ||
kerry234 | 0 | 373,440,231 | 56% | ||
parag | 0 | 86,389,514 | 28% | ||
maidisangkot | 0 | 279,784,243 | 56% | ||
kimaben | 0 | 239,534,782 | 14% | ||
nicole-st | 0 | 3,729,387,090 | 28% | ||
giavellottista | 0 | 116,208,035 | 28% | ||
teukurival | 0 | 2,995,459,360 | 28% | ||
amanpathak | 0 | 110,401,556 | 28% | ||
engineeringfeed | 0 | 86,900,587 | 28% | ||
craigahamilton | 0 | 94,434,752 | 5.6% | ||
delph-in-holland | 0 | 535,195,947 | 28% | ||
spectrums | 0 | 403,444,884 | 56% | ||
cheneats | 0 | 609,972,078 | 5% | ||
eduardonarvaez | 0 | 97,336,479 | 28% | ||
drmake | 0 | 30,474,120,018 | 28% | ||
abrahman5 | 0 | 116,941,529 | 28% | ||
zerin.tahmid | 0 | 116,507,303 | 28% | ||
zohaib715 | 0 | 142,660,200 | 28% | ||
fidel66 | 0 | 190,821,554 | 56% | ||
klizo | 0 | 93,302,646 | 28% | ||
pechichemena | 0 | 1,886,578,180 | 11.2% | ||
naideth | 0 | 330,623,503 | 5.6% | ||
dpalash124 | 0 | 116,082,261 | 28% | ||
aehiguese | 0 | 95,227,743 | 56% | ||
sunnyali | 0 | 118,167,545 | 5% | ||
idontgnu | 0 | 337,404,384 | 28% | ||
open-asset | 0 | 92,579,413 | 28% | ||
sireh | 0 | 1,717,391,701 | 5.6% | ||
studytext | 0 | 116,234,745 | 28% | ||
saharia | 0 | 116,478,587 | 28% | ||
caesar2341 | 0 | 82,861,978 | 28% | ||
xanderslee | 0 | 3,309,218,825 | 56% | ||
buti95 | 0 | 116,458,964 | 28% | ||
brutledge | 0 | 1,446,802,647 | 28% | ||
gerel | 0 | 1,434,077,609 | 28% | ||
kenadis | 0 | 6,551,819,574 | 28% | ||
esaia.mystic | 0 | 2,651,192,671 | 56% | ||
mrogy1 | 0 | 70,933,713 | 28% | ||
chullbull | 0 | 98,138,541 | 28% | ||
maticpecovnik | 0 | 8,410,037,892 | 22.4% | ||
enjoyy | 0 | 254,127,245 | 28% | ||
aejackson | 0 | 79,854,007 | 1.12% | ||
tomco984 | 0 | 96,346,608 | 28% | ||
hasan086 | 0 | 222,282,536 | 28% | ||
ilovekrys | 0 | 116,441,106 | 28% | ||
thescubageek | 0 | 4,041,388,360 | 28% | ||
sohailahmed | 0 | 292,483,375 | 28% | ||
daglo99 | 0 | 155,357,316 | 28% | ||
crescendoofpeace | 0 | 250,397,029 | 1.4% | ||
nsiman | 0 | 75,304,381 | 28% | ||
rifkan | 0 | 4,255,775,767 | 100% | ||
heibert210 | 0 | 82,149,425 | 28% | ||
tomatom | 0 | 579,830,197 | 28% | ||
michaelangello | 0 | 115,872,616 | 28% | ||
paradigmprospect | 0 | 2,559,274,257 | 4.2% | ||
mladenpaunovic | 0 | 636,917,241 | 28% | ||
akumar | 0 | 780,358,588 | 28% | ||
venalbe | 0 | 809,832,444 | 28% | ||
danaedwards | 0 | 6,085,953,669 | 56% | ||
anikekirsten | 0 | 197,444,700 | 56% | ||
evernew | 0 | 274,188,103 | 28% | ||
lucksacks.com | 0 | 123,809,607 | 28% | ||
goalgetter | 0 | 95,828,915 | 28% | ||
gordon92 | 0 | 3,891,457,019 | 28% | ||
bitcoinportugal | 0 | 1,604,806,927 | 28% | ||
stahlberg | 0 | 12,735,868,073 | 28% | ||
gaozben | 0 | 82,020,077 | 28% | ||
jordan.white306 | 0 | 657,148,249 | 28% | ||
gabrielatravels | 0 | 3,925,122,481 | 14% | ||
catalincernat | 0 | 78,677,215 | 56% | ||
all-right | 0 | 260,490,796 | 56% | ||
camillius | 0 | 98,243,299 | 16.8% | ||
reizak | 0 | 4,911,155,760 | 22.4% | ||
cerventus | 0 | 355,676,150 | 28% | ||
lukecreed | 0 | 205,664,002 | 28% | ||
justenve | 0 | 115,542,619 | 28% | ||
monoindustrias | 0 | 83,658,306 | 56% | ||
zlatkamrs | 0 | 3,448,483,537 | 53.2% | ||
creatrixity | 0 | 293,151,512 | 28% | ||
ocn | 0 | 115,106,462 | 28% | ||
speaklife | 0 | 657,289,013 | 56% | ||
kingingodwin | 0 | 282,938,870 | 56% | ||
lilianajimenez | 0 | 1,299,067,888 | 28% | ||
mkmk | 0 | 205,371,063 | 28% | ||
payger | 0 | 1,659,252,326 | 28% | ||
smanuels | 0 | 294,061,247 | 28% | ||
goddywise4-eu | 0 | 187,655,654 | 56% | ||
layanmarissa | 0 | 91,739,028 | 28% | ||
hijosdelhombre | 0 | 2,766,593,816 | 2.8% | ||
irisworld | 0 | 1,342,934,742 | 28% | ||
chemistry0 | 0 | 206,310,712 | 56% | ||
bimijay | 0 | 278,743,662 | 56% | ||
anarchojeweler | 0 | 304,203,972 | 14% | ||
smjn | 0 | 493,819,996,202 | 80% | ||
amf6 | 0 | 116,946,914 | 28% | ||
dolphinscute | 0 | 81,067,553 | 28% | ||
shinedojo | 0 | 6,489,538,699 | 56% | ||
bennettitalia | 0 | 4,488,452,346 | 14% | ||
christianyocte | 0 | 1,049,933,251 | 5.6% | ||
gky | 0 | 116,358,378 | 28% | ||
dnitz50 | 0 | 85,980,530 | 43.11% | ||
brusd | 0 | 134,049,699 | 14% | ||
mrxplicit | 0 | 653,238,159 | 56% | ||
fidelpoet | 0 | 81,169,773 | 56% | ||
meansunlare | 0 | 75,764,697 | 56% | ||
dioscelle | 0 | 76,243,328 | 28% | ||
bhargavivkothari | 0 | 168,184,937 | 28% | ||
cryptospreads | 0 | 116,498,433 | 28% | ||
emmemm | 0 | 160,791,622 | 56% | ||
ganastha | 0 | 136,869,258 | 28% | ||
jibril14 | 0 | 76,083,436 | 56% | ||
talli-art | 0 | 1,125,730,737 | 56% | ||
thabiggdogg | 0 | 226,912,430 | 28% | ||
jcalero | 0 | 2,397,820,082 | 56% | ||
jayfamous | 0 | 189,369,520 | 56% | ||
ssierra | 0 | 116,948,965 | 28% | ||
cesaralejandro | 0 | 75,674,667 | 28% | ||
eddieboo | 0 | 188,250,434 | 56% | ||
sanyjaya | 0 | 188,252,916 | 56% | ||
iamfo | 0 | 118,452,606 | 28% | ||
strings | 0 | 480,667,024 | 28% | ||
roger.remix | 0 | 252,899,559 | 28% | ||
cheesom | 0 | 122,581,144 | 28% | ||
indrajeet | 0 | 125,993,649 | 28% | ||
aaronteng | 0 | 366,507,366 | 28% | ||
debbietiyan | 0 | 1,487,551,551 | 28% | ||
emirfirlar | 0 | 353,546,342 | 28% | ||
sargoon | 0 | 486,676,278 | 5.6% | ||
yucee | 0 | 149,708,150 | 28% | ||
will12 | 0 | 116,416,882 | 28% | ||
mininthecity | 0 | 2,646,162,597 | 44.8% | ||
edprivat | 0 | 1,756,369,943 | 0.15% | ||
deril | 0 | 236,223,216 | 56% | ||
trixie | 0 | 72,112,590 | 10% | ||
babaj | 0 | 112,723,386 | 56% | ||
didic | 0 | 31,996,476,768 | 28% | ||
beanenergy | 0 | 70,735,882 | 28% | ||
davt014 | 0 | 242,783,700 | 28% | ||
kamilala125 | 0 | 85,635,579 | 56% | ||
peeyush | 0 | 86,450,964 | 28% | ||
snowgoat | 0 | 214,524,081 | 56% | ||
saifannur-mzy | 0 | 116,117,094 | 28% | ||
operahoser | 0 | 4,738,645,353 | 8.4% | ||
yuniraziati | 0 | 216,029,447 | 56% | ||
asonintrigue | 0 | 2,489,873,131 | 28% | ||
modernmclaire | 0 | 257,407,305 | 56% | ||
raquelita | 0 | 169,859,869 | 28% | ||
jpmkikoy | 0 | 468,361,705 | 28% | ||
breezieblack | 0 | 72,319,781 | 28% | ||
kakin | 0 | 187,094,118 | 50% | ||
gio6 | 0 | 495,245,654 | 28% | ||
used-lessboy | 0 | 72,149,139 | 28% | ||
loydjayme25 | 0 | 616,713,174 | 28% | ||
oghie | 0 | 569,936,030 | 50% | ||
artturtle | 0 | 43,154,864,035 | 43.11% | ||
maddie30 | 0 | 72,823,087 | 11.2% | ||
binarycounter | 0 | 220,201,469 | 56% | ||
ameliabartlett | 0 | 1,423,166,008 | 8.4% | ||
sylinda | 0 | 116,653,534 | 28% | ||
haggislove | 0 | 116,174,616 | 28% | ||
adalhelm | 0 | 672,026,063 | 22.4% | ||
japalekhin | 0 | 833,379,574 | 100% | ||
ihamquentin | 0 | 76,039,524 | 28% | ||
iamwhatiamnot | 0 | 138,130,594 | 11.2% | ||
lokiamfire | 0 | 116,192,522 | 28% | ||
henryconache | 0 | 507,977,088 | 28% | ||
tailslide | 0 | 100,118,351 | 28% | ||
christinegegare | 0 | 163,520,100 | 28% | ||
beladro | 0 | 1,067,830,762 | 28% | ||
lovetouch | 0 | 445,336,414 | 28% | ||
princefizzy | 0 | 225,345,297 | 56% | ||
schniggschnagg | 0 | 84,345,270 | 28% | ||
antigenx | 0 | 243,317,877 | 22.4% | ||
benleemusic | 0 | 1,849,183,548 | 5.6% | ||
rulilesmana | 0 | 105,404,923 | 28% | ||
hoobeehey | 0 | 143,177,901 | 56% | ||
raoul.poenar | 0 | 111,572,031 | 14% | ||
fullabeans | 0 | 116,886,044 | 28% | ||
akane92 | 0 | 75,290,127 | 28% | ||
ehtishamjadoon | 0 | 96,503,081 | 28% | ||
ivan-g | 0 | 7,596,575,717 | 28% | ||
edinsoo | 0 | 109,536,247 | 28% | ||
viajeradelrio | 0 | 71,530,067 | 28% | ||
medical-hall | 0 | 81,716,713 | 56% | ||
eightbitfiction | 0 | 72,873,348 | 28% | ||
metalhero | 0 | 116,998,365 | 28% | ||
jaebirds | 0 | 117,031,236 | 28% | ||
kul0tzzz | 0 | 187,683,896 | 56% | ||
basir92 | 0 | 94,260,767 | 28% | ||
rheyss08 | 0 | 94,202,265 | 28% | ||
saystraight | 0 | 80,237,478 | 28% | ||
julianalpanta | 0 | 104,154,095 | 28% | ||
sampath94 | 0 | 93,490,348 | 28% | ||
letsplaywhatelse | 0 | 422,470,953 | 28% | ||
jerscoguth | 0 | 280,708,244 | 56% | ||
conscmovement | 0 | 107,182,685 | 28% | ||
wrpx | 0 | 374,356,549 | 28% | ||
fai.zul | 0 | 116,451,133 | 28% | ||
dzued | 0 | 163,526,770 | 28% | ||
martinasari | 0 | 116,735,843 | 28% | ||
shawnycx | 0 | 261,741,112 | 56% | ||
marielitux | 0 | 116,439,239 | 28% | ||
polycarpedet | 0 | 90,268,423 | 28% | ||
steempeninsula | 0 | 70,909,515 | 28% | ||
joelagbo | 0 | 794,321,825 | 28% | ||
robotsteemit | 0 | 116,507,309 | 28% | ||
idkpdx | 0 | 494,030,901 | 28% | ||
cryptofuwealth | 0 | 88,765,978 | 11% | ||
atjehsteemit | 0 | 384,477,152 | 28% | ||
vlogger56 | 0 | 80,408,643 | 28% | ||
arellanoyan | 0 | 117,290,095 | 56% | ||
kothy | 0 | 1,064,068,909 | 28% | ||
morbyjohn | 0 | 53,190,880 | 7% | ||
forgottendreams | 0 | 114,152,652 | 28% | ||
steemdragon | 0 | 72,342,830 | 28% | ||
norwegianbikeman | 0 | 3,231,307,454 | 100% | ||
ambitiouslife | 0 | 3,566,013,122 | 28% | ||
estherekanem | 0 | 203,267,648 | 56% | ||
lifediaries2nd | 0 | 181,297,802 | 28% | ||
nickiechua | 0 | 116,506,147 | 28% | ||
carloslgonzalez | 0 | 81,349,303 | 28% | ||
zombieslayer | 0 | 75,217,133 | 28% | ||
the-doubled | 0 | 279,462,641 | 56% | ||
mirna98 | 0 | 81,416,590 | 28% | ||
ninjarobo | 0 | 115,435,133 | 28% | ||
akaikeru | 0 | 115,419,356 | 28% | ||
stuckinacup | 0 | 104,307,529 | 28% | ||
beni96 | 0 | 648,816,683 | 28% | ||
yarinergonzalez | 0 | 195,495,840 | 47.6% | ||
sunshinebear | 0 | 481,448,448 | 28% | ||
phaazer1 | 0 | 801,374,711 | 28% | ||
theturtleproject | 0 | 156,302,676 | 2.8% | ||
zeshanjaved | 0 | 94,728,619 | 28% | ||
abreu | 0 | 122,894,927 | 39.19% | ||
maribelanzola | 0 | 84,719,248 | 28% | ||
partyheld | 0 | 116,317,904 | 28% | ||
bil.prag | 0 | 2,003,440,379 | 2.8% | ||
jingis07 | 0 | 2,290,967,917 | 28% | ||
galione | 0 | 498,499,050 | 28% | ||
gosmire78 | 0 | 905,076,706 | 56% | ||
azharmaulana | 0 | 75,868,862 | 28% | ||
toyosiartdiy | 0 | 85,508,566 | 28% | ||
iswanisamion | 0 | 93,133,216 | 56% | ||
har5h | 0 | 116,507,309 | 28% | ||
josegalanton | 0 | 231,735,260 | 28% | ||
donjyde | 0 | 79,392,783 | 28% | ||
pwner | 0 | 278,741,967 | 56% | ||
gabyoraa | 0 | 1,439,051,923 | 28% | ||
morph3us | 0 | 116,204,414 | 28% | ||
glorimar | 0 | 85,754,728 | 28% | ||
virgo27 | 0 | 236,384,045 | 28% | ||
crispycoinboys | 0 | 157,168,108 | 2.8% | ||
gwapoaller | 0 | 115,272,014 | 28% | ||
carloniere | 0 | 158,528,407 | 28% | ||
cjunros | 0 | 1,933,875,413 | 28% | ||
mujiarreza | 0 | 116,036,829 | 28% | ||
mrgranville | 0 | 226,185,114 | 56% | ||
nyakrahmat | 0 | 123,094,332 | 28% | ||
mohamedsabry | 0 | 100,586,438 | 28% | ||
khairulfahmi92 | 0 | 189,587,808 | 56% | ||
laurentiu.negrea | 0 | 662,155,003 | 28% | ||
maryjohnson | 0 | 99,233,929 | 28% | ||
omairqazi | 0 | 104,888,933 | 28% | ||
garnan1111 | 0 | 116,507,303 | 28% | ||
mylittlestar | 0 | 116,113,125 | 28% | ||
befaro | 0 | 195,288,881 | 56% | ||
bdshakib | 0 | 116,961,149 | 28% | ||
harris2017 | 0 | 117,090,771 | 28% | ||
bcfriday | 0 | 221,924,839 | 56% | ||
arc.angel | 0 | 126,098,750 | 28% | ||
selfedmade | 0 | 116,504,930 | 28% | ||
jayo | 0 | 85,248,673 | 28% | ||
chrisjayl | 0 | 137,986,670 | 28% | ||
neilrichmond | 0 | 74,578,957 | 28% | ||
wisata | 0 | 205,337,044 | 56% | ||
busytime | 0 | 116,507,303 | 28% | ||
haikalisifa | 0 | 109,863,040 | 28% | ||
arrahman90 | 0 | 128,622,821 | 28% | ||
count-antonio | 0 | 116,507,303 | 28% | ||
hulya.rtk.krsn | 0 | 116,507,303 | 28% | ||
chachikho123 | 0 | 105,298,056 | 28% | ||
elsll | 0 | 1,965,942,476 | 56% | ||
steemaniax | 0 | 117,038,722 | 28% | ||
barutundefteri | 0 | 116,503,551 | 28% | ||
ikeror | 0 | 340,658,025 | 50.4% | ||
askyflyhigh | 0 | 110,968,890 | 28% | ||
agrestic | 0 | 258,846,354 | 28% | ||
bavi | 0 | 2,344,164,520 | 28% | ||
hiddenblade | 0 | 5,705,395,095 | 44.8% | ||
fibrefox | 0 | 164,065,293 | 28% | ||
mrjokar | 0 | 116,398,267 | 28% | ||
flawlessal | 0 | 116,872,547 | 28% | ||
charlotteroze | 0 | 198,456,688 | 42% | ||
bravofer | 0 | 98,933,717 | 28% | ||
dazzy | 0 | 78,022,208 | 28% | ||
kipswolfe | 0 | 620,627,973 | 14% | ||
greenville | 0 | 75,456,582 | 28% | ||
ahmad097 | 0 | 86,465,373 | 28% | ||
mbahtutorial | 0 | 94,761,221 | 28% | ||
miralva | 0 | 177,433,922 | 47.6% | ||
animesukidesu | 0 | 109,447,023 | 28% | ||
mariusfebruary | 0 | 1,892,876,744,914 | 11.2% | ||
technotroll | 0 | 551,583,876 | 28% | ||
outtheshellvlog | 0 | 556,534,960 | 28% | ||
melouna | 0 | 550,892,749 | 100% | ||
budika | 0 | 121,710,971 | 28% | ||
riandifc | 0 | 115,964,653 | 28% | ||
zay-arasi | 0 | 73,280,668 | 28% | ||
farabi | 0 | 117,072,099 | 28% | ||
wr212 | 0 | 106,504,904 | 28% | ||
kevinwalton | 0 | 116,508,470 | 28% | ||
martzpro | 0 | 107,427,242 | 28% | ||
wealth4good | 0 | 115,660,529 | 2.8% | ||
oclinton | 0 | 745,442,887 | 28% | ||
kaestel | 0 | 74,951,825 | 28% | ||
travelerjoe | 0 | 116,083,192 | 28% | ||
alltechevent | 0 | 84,671,247 | 28% | ||
thomaskatan | 0 | 618,345,859 | 39.19% | ||
sandy666 | 0 | 116,503,831 | 28% | ||
ejimevwo | 0 | 85,823,539 | 28% | ||
rizkiadi | 0 | 101,769,087 | 28% | ||
ekayanti | 0 | 162,136,163 | 14% | ||
sigmund | 0 | 226,156,696 | 28% | ||
jeef-zone | 0 | 128,223,918 | 28% | ||
apteacher | 0 | 1,329,102,039 | 11.2% | ||
opluke | 0 | 116,507,303 | 28% | ||
deholt | 0 | 1,548,684,465 | 30.8% | ||
plgonzalezrx8 | 0 | 1,131,325,148 | 28% | ||
realredimi2 | 0 | 116,507,303 | 28% | ||
insaallah99 | 0 | 117,142,032 | 28% | ||
archaimusic | 0 | 119,946,134 | 10% | ||
paulove | 0 | 116,048,078 | 28% | ||
lianbloog | 0 | 83,935,464 | 28% | ||
wowaura | 0 | 107,597,942 | 28% | ||
dinaislamdina | 0 | 116,244,924 | 28% | ||
smacommunity | 0 | 2,587,514,658 | 28% | ||
muhammad.iqbal | 0 | 78,842,999 | 28% | ||
tafgongthe1st | 0 | 116,598,797 | 28% | ||
lalouline | 0 | 116,514,931 | 28% | ||
kaplat | 0 | 104,781,164 | 28% | ||
musicvoter | 0 | 4,647,139,002 | 1% | ||
leeyen23 | 0 | 197,721,185 | 28% | ||
abbasi1986 | 0 | 89,229,808 | 28% | ||
jramirezviera | 0 | 116,722,219 | 28% | ||
ilmondoditea | 0 | 214,791,192 | 28% | ||
albarransama | 0 | 113,448,312 | 28% | ||
goodway | 0 | 157,103,540 | 1% | ||
bogdasha | 0 | 2,322,470,199 | 8% | ||
ntowl | 0 | 1,800,806,608 | 16.8% | ||
nigerian-yogagal | 0 | 1,525,464,068 | 28% | ||
etaletai | 0 | 304,079,063 | 28% | ||
smer | 0 | 115,073,579 | 28% | ||
egheprincez | 0 | 94,761,233 | 28% | ||
stevenwood | 0 | 296,537,901 | 5.6% | ||
clubfungus | 0 | 377,791,597 | 0.56% | ||
samcofy | 0 | 115,438,447 | 28% | ||
nickeychan | 0 | 111,753,508 | 28% | ||
dubbio | 0 | 116,730,074 | 28% | ||
techsfair | 0 | 82,108,488 | 28% | ||
qberryfarms | 0 | 1,301,290,477 | 28% | ||
lulita24 | 0 | 117,090,315 | 28% | ||
jickirti | 0 | 116,864,931 | 28% | ||
gmlgang | 0 | 467,100,279 | 88% | ||
blackelephant | 0 | 120,493,373 | 28% | ||
jazzyjeff | 0 | 138,477,999 | 42% | ||
bluedragon1974 | 0 | 153,959,199 | 42% | ||
ikkelins | 0 | 528,279,807 | 14% | ||
cryptek | 0 | 116,771,084 | 28% | ||
shortstack | 0 | 116,310,738 | 28% | ||
jorx | 0 | 116,070,303 | 28% | ||
shookriya | 0 | 1,373,005,963 | 12.43% | ||
winkandwoo | 0 | 78,214,304 | 28% | ||
joanpablo | 0 | 100,927,888 | 28% | ||
noone1793 | 0 | 548,753,430 | 100% | ||
abeatc | 0 | 111,924,434 | 28% | ||
jaber-hossain70 | 0 | 86,151,919 | 28% | ||
unstories | 0 | 548,747,056 | 100% | ||
chupacabraz | 0 | 548,756,675 | 100% | ||
onethousandpics | 0 | 754,927,549 | 28% | ||
gracelbm | 0 | 3,168,770,028 | 28% | ||
awesome-p | 0 | 109,759,146 | 28% | ||
japasep16 | 0 | 116,529,810 | 28% | ||
geekmind | 0 | 116,507,309 | 28% | ||
akram7 | 0 | 77,842,403 | 28% | ||
vinothkanna | 0 | 116,508,476 | 28% | ||
yinyang4ever | 0 | 112,768,333 | 28% | ||
toby-l | 0 | 280,455,418 | 56% | ||
blessedsteemer | 0 | 81,406,157 | 28% | ||
ajaxkennes | 0 | 111,464,930 | 28% | ||
gnaimul | 0 | 77,527,566 | 28% | ||
kyanzieuno | 0 | 307,547,517 | 28% | ||
avizor | 0 | 596,439,818 | 28% | ||
gpwebers | 0 | 100,417,358 | 28% | ||
hakan1988 | 0 | 77,230,029 | 28% | ||
jakecrypto | 0 | 137,470,022 | 28% | ||
morin89 | 0 | 76,249,290 | 28% | ||
idafc | 0 | 107,469,880 | 56% | ||
genesis171 | 0 | 76,070,945 | 28% | ||
niouton | 0 | 2,911,709,982 | 11.2% | ||
tea-man | 0 | 776,212,172 | 5.6% | ||
siul.joar | 0 | 89,586,318 | 28% | ||
chiqui03 | 0 | 75,519,270 | 28% | ||
blockurator | 0 | 1,593,412,095 | 5.6% | ||
zephyr119 | 0 | 80,235,784 | 28% | ||
devitech | 0 | 77,062,052 | 28% | ||
ghost2 | 0 | 79,585,185 | 28% | ||
supernews | 0 | 74,933,044 | 28% | ||
ahsanabdullah | 0 | 93,934,968 | 28% | ||
juliame | 0 | 279,700,862 | 56% | ||
umitay | 0 | 267,692,293 | 56% | ||
rfburton | 0 | 116,167,862 | 28% | ||
mittalamit284 | 0 | 98,610,797 | 28% | ||
schroders | 0 | 21,767,364,983 | 16.8% | ||
byash | 0 | 189,917,964 | 56% | ||
derson | 0 | 117,006,714 | 28% | ||
steemitlancer | 0 | 153,997,763 | 44.8% | ||
madonna2018 | 0 | 114,274,150 | 28% | ||
steemitarcher | 0 | 115,355,957 | 28% | ||
firman2908 | 0 | 71,353,905 | 28% | ||
marzuki-r | 0 | 99,371,627 | 28% | ||
albor1986 | 0 | 116,470,044 | 28% | ||
atheology | 0 | 116,506,147 | 28% | ||
vellotinna | 0 | 116,405,690 | 28% | ||
sketch.and.jam | 0 | 4,465,731,126 | 35% | ||
myoha7 | 0 | 116,508,470 | 28% | ||
haikun | 0 | 548,756,675 | 100% | ||
stelarnoodle | 0 | 548,747,056 | 100% | ||
ihal0001 | 0 | 115,717,278 | 28% | ||
theminnowhelper | 0 | 116,507,303 | 28% | ||
elpriist | 0 | 116,997,366 | 28% | ||
sbi5 | 0 | 29,284,749,727 | 11.59% | ||
eveson | 0 | 145,439,290 | 39.19% | ||
alchemylgc | 0 | 100,251,669 | 28% | ||
lil-splatts | 0 | 456,979,640 | 8.4% | ||
bathijp | 0 | 116,416,882 | 28% | ||
naomipangolin | 0 | 1,373,635,968 | 28% | ||
mayib | 0 | 289,293,859 | 28% | ||
liquidpoopcorn | 0 | 111,839,202 | 28% | ||
holograma | 0 | 113,608,191 | 28% | ||
jumpup | 0 | 116,416,882 | 28% | ||
mojacko | 0 | 242,153,881 | 28% | ||
cryptocopy | 0 | 3,533,471,642 | 28% | ||
zorang | 0 | 116,950,123 | 28% | ||
sagor94 | 0 | 116,508,470 | 28% | ||
urme33 | 0 | 1,009,577,930 | 2% | ||
eroticabian | 0 | 711,094,180 | 11.2% | ||
leonosso | 0 | 116,507,309 | 28% | ||
reconstitution | 0 | 415,776,760 | 7.84% | ||
marcozina | 0 | 116,507,309 | 28% | ||
longer | 0 | 260,582,653 | 50% | ||
tysir | 0 | 116,873,909 | 28% | ||
blewitt | 0 | 18,810,282,586 | 3.92% | ||
horribleorbit | 0 | 195,472,226 | 56% | ||
carpet.duck | 0 | 201,206,128 | 28% | ||
techupdate | 0 | 136,286,143 | 28% | ||
sivehead | 0 | 207,573,269 | 1% | ||
kafupraise | 0 | 92,841,476 | 34% | ||
aishpandey | 0 | 100,136,396 | 28% | ||
mindbuilder-sc | 0 | 292,174,789 | 28% | ||
uhamm | 0 | 126,247,252 | 56% | ||
jpgalih | 0 | 116,280,721 | 28% | ||
galihtruff | 0 | 84,527,087 | 28% | ||
duocover | 0 | 110,092,722 | 28% | ||
babalsilau | 0 | 116,109,295 | 28% | ||
siraizel | 0 | 93,884,903 | 28% | ||
shortsegments | 0 | 40,907,246,164 | 28% | ||
sondage | 0 | 548,747,056 | 100% | ||
pultaceous | 0 | 548,747,056 | 100% | ||
alamat | 0 | 548,756,675 | 100% | ||
mzh.hamim | 0 | 116,508,470 | 28% | ||
juanguillen | 0 | 101,284,848 | 28% | ||
dexvid | 0 | 116,076,852 | 28% | ||
infaust | 0 | 548,753,430 | 100% | ||
garrettwey | 0 | 548,756,675 | 100% | ||
unpoetry | 0 | 548,747,056 | 100% | ||
cringytv | 0 | 116,508,470 | 28% | ||
mahmudulhassan | 0 | 294,348,583 | 28% | ||
reboost | 0 | 116,118,945 | 28% | ||
leilanyarevalo | 0 | 288,716,727 | 16.8% | ||
whyken | 0 | 87,072,182 | 28% | ||
phonasthenia | 0 | 548,747,056 | 100% | ||
epagoge | 0 | 548,753,430 | 100% | ||
vicmic | 0 | 90,639,885 | 28% | ||
mariabutto | 0 | 116,508,470 | 28% | ||
boyaceh | 0 | 94,273,425 | 28% | ||
angelica7 | 0 | 280,422,987 | 2.8% | ||
femidada | 0 | 78,117,806 | 28% | ||
payinstant | 0 | 98,361,811 | 28% | ||
reungkhoem | 0 | 79,221,446 | 28% | ||
emmalg87 | 0 | 116,120,092 | 28% | ||
mvoalevine | 0 | 86,078,045 | 28% | ||
annasilvia | 0 | 116,210,583 | 28% | ||
veteransoffgrid | 0 | 83,670,854 | 28% | ||
magdechef | 0 | 85,503,432 | 28% | ||
ilovecryptopl | 0 | 7,952,035,772 | 44.8% | ||
poeblu85 | 0 | 116,849,019 | 28% | ||
vmkoko | 0 | 90,867,972 | 28% | ||
walexworld | 0 | 81,031,606 | 28% | ||
polash66129 | 0 | 71,746,792 | 28% | ||
yomismosoy | 0 | 293,682,703 | 50% | ||
ninihorlah | 0 | 88,847,701 | 28% | ||
chrome.citizen | 0 | 72,704,770 | 28% | ||
ashfaaaq | 0 | 1,028,980,959 | 28% | ||
juanhobos | 0 | 342,202,699 | 28% | ||
bflanagin | 0 | 5,424,294,027 | 28% | ||
johngoad | 0 | 122,161,752 | 56% | ||
steinz | 0 | 1,078,350,671 | 28% | ||
kayegrasya | 0 | 302,679,538 | 28% | ||
foxesal | 0 | 83,387,961 | 28% | ||
libe | 0 | 116,403,476 | 28% | ||
ziaaa | 0 | 116,231,343 | 28% | ||
lexcreativz | 0 | 116,230,379 | 28% | ||
earnstech | 0 | 116,274,576 | 28% | ||
vtechifie | 0 | 116,508,470 | 28% | ||
nikola.kalabic | 0 | 279,797,720 | 56% | ||
sina-adventure | 0 | 746,715,203 | 56% | ||
ssteem | 0 | 116,447,682 | 28% | ||
lillywilton | 0 | 915,540,553 | 20% | ||
bitson | 0 | 95,761,284 | 28% | ||
mrandreas | 0 | 87,089,081 | 28% | ||
yestermorrow | 0 | 5,437,331,828 | 16.8% | ||
call-me-howie | 0 | 1,029,761,314 | 28% | ||
helmimemes | 0 | 93,729,733 | 28% | ||
homespun | 0 | 46,115,848 | 56% | ||
seventhsun | 0 | 330,613,221 | 28% | ||
hansmast | 0 | 4,619,765,611 | 28% | ||
momimalhi | 0 | 940,068,534 | 28% | ||
sorawth | 0 | 240,594,254 | 56% | ||
ekafao | 0 | 292,298,866 | 28% | ||
cynicalcake | 0 | 612,663,573 | 28% | ||
david9122 | 0 | 104,571,385 | 28% | ||
walterhash | 0 | 116,254,763 | 28% | ||
rockinggameworld | 0 | 83,945,570 | 28% | ||
hrtstrings | 0 | 213,150,273 | 56% | ||
deividluchi | 0 | 1,114,388,908 | 28% | ||
alisalof | 0 | 84,217,153 | 28% | ||
wallyt | 0 | 3,754,212,539 | 22.4% | ||
wstanley226 | 0 | 76,097,187 | 50% | ||
betoviiil | 0 | 116,421,414 | 28% | ||
nicole24 | 0 | 93,358,184 | 28% | ||
friskykitty | 0 | 88,406,611 | 28% | ||
tjessie | 0 | 189,762,209 | 56% | ||
lemareg | 0 | 100,006,396 | 28% | ||
junaidpasha | 0 | 116,446,005 | 28% | ||
criptomoneta | 0 | 87,767,823 | 28% | ||
partitura | 0 | 869,043,372 | 28% | ||
yaelg | 0 | 2,548,061,020 | 5% | ||
olusegun | 0 | 93,514,933 | 28% | ||
samsonite18654 | 0 | 78,777,678 | 28% | ||
carolinafer | 0 | 80,869,592 | 28% | ||
cryptobeast7 | 0 | 126,086,881 | 28% | ||
karibeweb | 0 | 116,102,964 | 28% | ||
time.toeat | 0 | 90,822,212 | 28% | ||
ipally | 0 | 116,053,547 | 28% | ||
elius2289 | 0 | 117,099,535 | 28% | ||
andylsyahputra | 0 | 115,435,650 | 28% | ||
radioboots | 0 | 116,049,874 | 28% | ||
steeming-ali | 0 | 576,226,277 | 28% | ||
bradondamyx12345 | 0 | 94,258,050 | 28% | ||
penyuteverest | 0 | 116,504,986 | 28% | ||
dayosoyinka | 0 | 116,042,465 | 28% | ||
sepin | 0 | 134,421,659 | 28% | ||
sayeedrock | 0 | 116,950,129 | 28% | ||
cryptobl4ck | 0 | 116,040,601 | 28% | ||
gio.vanne | 0 | 81,555,181 | 28% | ||
danlipert | 0 | 1,208,401,376 | 28% | ||
withbristy | 0 | 92,137,937 | 28% | ||
dianation | 0 | 74,403,491 | 28% | ||
sadnesscarl | 0 | 72,188,141 | 28% | ||
walletexpert | 0 | 188,120,299 | 28% | ||
vasethros81 | 0 | 98,286,548 | 28% | ||
aguirod | 0 | 116,951,028 | 28% | ||
tommasobusiello | 0 | 2,968,285,543 | 28% | ||
kenlow | 0 | 116,142,760 | 28% | ||
deniree-celis | 0 | 149,393,032 | 33.6% | ||
clement.poiret | 0 | 3,672,880,825 | 56% | ||
shadown99 | 0 | 1,459,117,614 | 28% | ||
badpupper | 0 | 288,874,113 | 28% | ||
messianism | 0 | 548,753,430 | 100% | ||
ak477 | 0 | 79,007,168 | 28% | ||
venustory | 0 | 87,292,523 | 28% | ||
dekpah | 0 | 116,098,625 | 28% | ||
dong-a | 0 | 97,991,724 | 28% | ||
venusisme | 0 | 279,518,538 | 56% | ||
dropedesign | 0 | 116,506,147 | 28% | ||
henry.englert | 0 | 81,170,420 | 28% | ||
darpankurani | 0 | 86,768,746 | 28% | ||
naayren | 0 | 95,570,344 | 28% | ||
shepherd-stories | 0 | 391,947,508 | 28% | ||
t1050108 | 0 | 117,017,832 | 28% | ||
annaabi | 0 | 3,974,506,414 | 28% | ||
abdelkrim2015 | 0 | 239,669,125 | 28% | ||
ananas.studio | 0 | 554,029,354 | 28% | ||
juanl11 | 0 | 116,508,470 | 28% | ||
kiikoh | 0 | 454,421,287 | 56% | ||
justintan | 0 | 116,925,577 | 28% | ||
saridezraa | 0 | 116,924,419 | 28% | ||
adamllokman | 0 | 201,060,065 | 56% | ||
samaz0r | 0 | 113,812,130 | 28% | ||
synthtology | 0 | 74,258,624 | 28% | ||
drifter2 | 0 | 462,912,295 | 28% | ||
dikkie | 0 | 230,145,293 | 56% | ||
zygi | 0 | 116,057,424 | 28% | ||
diyanti86 | 0 | 999,302,094 | 28% | ||
weenwacyrus | 0 | 106,812,087 | 28% | ||
idiongo | 0 | 76,929,178 | 28% | ||
attorneyatlawl | 0 | 116,919,643 | 28% | ||
culinaria | 0 | 282,938,870 | 56% | ||
ultramontane | 0 | 548,747,056 | 100% | ||
galleriable | 0 | 548,756,675 | 100% | ||
alim264 | 0 | 116,821,248 | 28% | ||
sugarpie | 0 | 115,259,131 | 28% | ||
daniel-jayu | 0 | 116,880,698 | 28% | ||
digital-jesus | 0 | 95,486,785 | 28% | ||
grizzz | 0 | 164,414,981 | 28% | ||
adrelian | 0 | 548,756,675 | 100% | ||
wraithdehors | 0 | 548,747,056 | 100% | ||
trang | 0 | 5,469,728,041 | 28% | ||
alexxxdada | 0 | 322,413,060 | 28% | ||
lozfawreflet | 0 | 548,753,430 | 100% | ||
tinchel | 0 | 548,747,056 | 100% | ||
exsanguinator | 0 | 116,744,415 | 28% | ||
greenfooteco | 0 | 301,564,171 | 28% | ||
aiberg | 0 | 90,083,087 | 28% | ||
kanhiyachauhan | 0 | 524,932,774 | 5.6% | ||
raghao | 0 | 1,028,012,923 | 28% | ||
rajesh1000 | 0 | 85,042,340 | 28% | ||
rhethypo | 0 | 2,481,978,060 | 28% | ||
orbe | 0 | 185,584,479 | 56% | ||
alexhuang | 0 | 116,951,016 | 28% | ||
gingeralen | 0 | 219,333,980 | 56% | ||
jakedavis224 | 0 | 235,493,710 | 28% | ||
paymanmahabad | 0 | 116,167,655 | 28% | ||
heatherhemp | 0 | 104,556,319 | 28% | ||
sisterma | 0 | 116,861,760 | 28% | ||
tarantula95 | 0 | 116,302,937 | 28% | ||
feederr | 0 | 116,169,399 | 28% | ||
antigourmet | 0 | 2,217,594,914 | 28% | ||
yes-please | 0 | 165,451,961 | 5.6% | ||
saifulhuri | 0 | 73,109,707 | 28% | ||
knightbjj | 0 | 1,011,504,589 | 28% | ||
predict-crypto | 0 | 1,975,243,281 | 1.12% | ||
alpha-today | 0 | 283,083,377 | 28% | ||
chickenmeat | 0 | 3,695,300,446 | 28% | ||
macoolette | 0 | 158,440,376,807 | 28% | ||
javier.dejuan | 0 | 12,702,802,231 | 56% | ||
nithin7237 | 0 | 85,973,221 | 28% | ||
rawpostblog | 0 | 71,851,021 | 28% | ||
antisocialian | 0 | 98,918,679 | 28% | ||
rizzybear | 0 | 72,329,736 | 28% | ||
jeongji | 0 | 116,028,647 | 28% | ||
lnib | 0 | 116,781,968 | 28% | ||
intertrigo | 0 | 548,756,675 | 100% | ||
skelatrenal | 0 | 551,990,784 | 100% | ||
cerumen | 0 | 548,753,430 | 100% | ||
jewlzie | 0 | 609,603,064 | 28% | ||
velmafia | 0 | 1,360,982,112 | 56% | ||
ancgci | 0 | 77,510,156 | 28% | ||
delubi | 0 | 101,091,724 | 28% | ||
ejgarcia | 0 | 523,482,392 | 28% | ||
pandina | 0 | 77,595,987 | 28% | ||
sol.ahmad | 0 | 87,535,657 | 28% | ||
mudassarhussain | 0 | 116,193,304 | 28% | ||
stonecoin | 0 | 622,719,457 | 56% | ||
pradumngaur | 0 | 116,216,487 | 28% | ||
kuku-splatts | 0 | 425,735,038 | 8.4% | ||
leftyobradovich | 0 | 240,913,208 | 56% | ||
henhaokan | 0 | 116,506,153 | 28% | ||
fanta-steem | 0 | 162,432,926 | 11.2% | ||
kinglypalace | 0 | 344,606,185 | 56% | ||
javiera | 0 | 172,353,463 | 28% | ||
joakina | 0 | 225,472,504 | 28% | ||
josefinaf | 0 | 187,635,431 | 28% | ||
carenama | 0 | 98,375,061 | 28% | ||
adalena | 0 | 212,661,141 | 28% | ||
hogony | 0 | 139,715,703 | 28% | ||
faitea | 0 | 119,950,768 | 28% | ||
verriabella | 0 | 177,125,900 | 28% | ||
lagritos | 0 | 137,595,884 | 28% | ||
tenegrore | 0 | 77,474,318 | 28% | ||
chriswilson | 0 | 99,383,326 | 28% | ||
rufinac | 0 | 165,965,108 | 28% | ||
prudenci | 0 | 109,832,444 | 28% | ||
modeste | 0 | 165,322,015 | 28% | ||
anti-bully | 0 | 492,282,288 | 28% | ||
shahrukh89 | 0 | 116,504,986 | 28% | ||
pemburubitcoin | 0 | 85,997,566 | 28% | ||
letzsteem | 0 | 98,025,746 | 28% | ||
princezakir | 0 | 70,248,770 | 28% | ||
topbuzzer | 0 | 89,854,025 | 28% | ||
desikaamukkahani | 0 | 1,742,452,599 | 56% | ||
kirstenboic | 0 | 76,810,535 | 28% | ||
mikofs31 | 0 | 116,507,309 | 28% | ||
reverseacid | 0 | 4,528,967,307 | 28% | ||
alatomz | 0 | 139,282,416 | 28% | ||
mrpritam | 0 | 116,508,482 | 28% | ||
franb24 | 0 | 114,819,552 | 28% | ||
shtefand | 0 | 116,105,468 | 28% | ||
adyorka | 0 | 764,688,179 | 28% | ||
imtydviperz | 0 | 117,065,502 | 28% | ||
dreamseller | 0 | 77,155,260 | 28% | ||
zerokun | 0 | 567,736,680 | 28% | ||
maglerky | 0 | 116,089,953 | 28% | ||
jhonnfreiny | 0 | 114,549,896 | 28% | ||
minnowwboster | 0 | 93,376,932 | 28% | ||
socynical | 0 | 116,460,675 | 28% | ||
arslanyasir | 0 | 149,267,945 | 33.6% | ||
semtroneum | 0 | 395,793,408 | 16.8% | ||
darklands | 0 | 21,241,217,316 | 10% | ||
sohelsarowar | 0 | 94,216,011 | 28% | ||
jensopinion | 0 | 247,901,310 | 28% | ||
mrsimpalacoupe78 | 0 | 114,147,986 | 28% | ||
anarcist | 0 | 87,065,373 | 28% | ||
andydream | 0 | 935,883,083 | 28% | ||
zeldacroft | 0 | 810,086,165 | 28% | ||
santiagoguillen | 0 | 100,771,196 | 28% | ||
alvinvoo | 0 | 173,516,245 | 28% | ||
alom8 | 0 | 1,222,962,969 | 28% | ||
andohyara | 0 | 121,303,252 | 5% | ||
tinakoya | 0 | 261,321,901 | 28% | ||
juankrk4 | 0 | 101,839,560 | 28% | ||
dsj | 0 | 82,588,025 | 28% | ||
eliasseth | 0 | 443,232,936 | 28% | ||
wiseman222 | 0 | 70,123,396 | 28% | ||
seattleite | 0 | 116,149,798 | 28% | ||
as-abir | 0 | 116,671,751 | 28% | ||
raoufwilly | 0 | 1,104,532,575 | 16.8% | ||
nirob44 | 0 | 116,426,191 | 28% | ||
silent678 | 0 | 201,956,624 | 56% | ||
inpursuit | 0 | 349,557,153 | 4.48% | ||
angelcg22 | 0 | 88,521,749 | 28% | ||
davidsams | 0 | 121,097,068 | 39.19% | ||
brectar | 0 | 116,420,160 | 28% | ||
positiveninja2 | 0 | 550,651,882 | 14% | ||
abbasi1987 | 0 | 117,107,862 | 28% | ||
ambercookie | 0 | 94,840,738 | 90% | ||
deadcountry | 0 | 1,455,304,953 | 28% | ||
nacho.pdf | 0 | 71,637,344 | 28% | ||
alvin0617 | 0 | 5,003,766,716 | 28% | ||
fatihyalcin14 | 0 | 116,126,844 | 28% | ||
rafaelricardo | 0 | 117,094,662 | 28% | ||
solarphasing | 0 | 363,868,308 | 5% | ||
diwu2605 | 0 | 112,223,896 | 28% | ||
naveedakhtar6283 | 0 | 72,098,886 | 28% | ||
millmakers | 0 | 108,385,620 | 28% | ||
sugarsugar | 0 | 177,198,220 | 28% | ||
carolina88 | 0 | 109,192,469 | 28% | ||
agala | 0 | 244,847,377 | 28% | ||
lordkipas | 0 | 103,083,557 | 28% | ||
allprecious | 0 | 116,095,197 | 28% | ||
letalis-laetitia | 0 | 278,803,488 | 28% | ||
wildsamsara | 0 | 921,103,154 | 28% | ||
cowpatty | 0 | 866,166,426 | 28% | ||
cienciatips | 0 | 116,682,484 | 28% | ||
habibi248 | 0 | 116,617,207 | 28% | ||
holatati | 0 | 70,784,599 | 28% | ||
cageysquirrle | 0 | 81,676,280 | 28% | ||
sarhugo | 0 | 1,169,169,461 | 28% | ||
kuangtianwen | 0 | 116,290,587 | 28% | ||
chamerada | 0 | 278,631,251 | 56% | ||
ahmad.musa | 0 | 116,757,967 | 28% | ||
rajaumer837 | 0 | 87,215,590 | 28% | ||
kigigha | 0 | 340,209,928 | 28% | ||
ankitjnv | 0 | 116,970,985 | 28% | ||
bluebella | 0 | 79,760,027 | 28% | ||
lexihun | 0 | 116,142,766 | 28% | ||
rogorki | 0 | 94,054,262 | 28% | ||
corinamartinez | 0 | 85,733,380 | 28% | ||
yulianaluquez | 0 | 108,419,932 | 28% | ||
onire19 | 0 | 97,347,990 | 28% | ||
lvpjulio | 0 | 83,387,587 | 28% | ||
youtubelife | 0 | 80,764,082 | 28% | ||
t07 | 0 | 141,776,749 | 28% | ||
passeggero | 0 | 177,291,471 | 28% | ||
ey54.ali | 0 | 77,502,682 | 28% | ||
reconspam | 0 | 112,370,005 | 7.84% | ||
rasalom | 0 | 405,931,629 | 56% | ||
fural | 0 | 125,868,431 | 56% | ||
tanatloc | 0 | 89,533,671 | 56% | ||
eric-north | 0 | 89,533,526 | 56% | ||
gandalfson | 0 | 80,564,909 | 56% | ||
varth-ogotaj | 0 | 74,064,369 | 56% | ||
alinoe | 0 | 73,588,814 | 56% | ||
arachnea | 0 | 93,107,201 | 56% | ||
mohadaslam | 0 | 117,120,496 | 28% | ||
martinstomisin | 0 | 145,915,195 | 28% | ||
greatlord | 0 | 87,328,180 | 42% | ||
itsbrxna | 0 | 108,555,037 | 28% | ||
drbtc | 0 | 73,017,323 | 28% | ||
vjapan | 0 | 116,712,990 | 28% | ||
muskan.ali146 | 0 | 116,350,393 | 28% | ||
nivinstark | 0 | 116,508,482 | 28% | ||
bluesniper | 0 | 1,951,196,018 | 0.5% | ||
juliamulcahy | 0 | 791,636,992 | 14% | ||
diego1425 | 0 | 98,092,274 | 28% |
### Thank you japalekhin! You've just received an upvote of 43% by artturtle! <a href="https://steemit.com/art/@artopium/artturtle-will-upvote-each-and-every-one-of-your-art-music-posts"> <img src="https://www.rovingfestival.com/images/artturtlead.png"></a> ### [Learn how I will upvote each and every one of *your* posts](https://steemit.com/art/@artopium/artturtle-will-upvote-each-and-every-one-of-your-art-music-posts) <br> Please come visit me to see my daily report detailing my current upvote power and how much I'm currently upvoting.
author | artturtle |
---|---|
permlink | re-setting-up-a-widget-tree-based-game-with-flame-and-flutter-20190511t210117 |
category | originalworks |
json_metadata | "" |
created | 2019-05-11 21:01:18 |
last_update | 2019-05-11 21:01:18 |
depth | 1 |
children | 0 |
last_payout | 2019-05-18 21:01:18 |
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 | 546 |
author_reputation | 18,796,114,672,508 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,683,111 |
net_rshares | 0 |
Hi japalekhin, <div class="pull-right"> https://steemitimages.com/DQmXgrYG8AKimJKRSu2urPB5SPcftN6GCGx2gVJJMwBkuTu/Curie%20Logo%2075px.png </div> This post has been upvoted by the Curie community curation project and associated vote trail as exceptional content (human curated and reviewed). Have a great day :) <br> Visit <a href="http://curiesteem.com/">curiesteem.com</a> or join the <a href="https://discord.gg/G6RPUMu">Curie Discord community</a> to learn more.
author | curie |
---|---|
permlink | re-setting-up-a-widget-tree-based-game-with-flame-and-flutter-20190512t020559 |
category | originalworks |
json_metadata | "" |
created | 2019-05-12 02:06:00 |
last_update | 2019-05-12 02:06:00 |
depth | 1 |
children | 0 |
last_payout | 2019-05-19 02:06:00 |
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 | 469 |
author_reputation | 613,039,945,737,625 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,694,911 |
net_rshares | 0 |
Some cool activity you have there. I am always wondering if I would have not pursued my profession, will I do the same? Having a passion for computers and the like and maybe has some background on programming, it would have been fun and exciting. Especially if your concept will become a trend, no one really knows. Anyway, good luck with your endeavor and I hope that many will follow you and your games. Just don't stop and I am sure that you can formulate something unique that will attract many players. Cheers.
author | edencourage |
---|---|
permlink | re-japalekhin-setting-up-a-widget-tree-based-game-with-flame-and-flutter-20190512t102743181z |
category | originalworks |
json_metadata | {"tags":["originalworks"],"app":"steemit/0.1"} |
created | 2019-05-12 10:27:42 |
last_update | 2019-05-12 10:27:42 |
depth | 1 |
children | 1 |
last_payout | 2019-05-19 10:27:42 |
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 | 517 |
author_reputation | 3,413,597,020,958 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,712,891 |
net_rshares | 833,379,574 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
japalekhin | 0 | 833,379,574 | 100% |
Hey, thanks for visiting and the encouragement. It's not too late! You can do programming as a non-serious hobby. :D
author | japalekhin |
---|---|
permlink | re-edencourage-re-japalekhin-setting-up-a-widget-tree-based-game-with-flame-and-flutter-20190512t145927684z |
category | originalworks |
json_metadata | {"tags":["originalworks"],"app":"steemit/0.1"} |
created | 2019-05-12 14:59:27 |
last_update | 2019-05-12 14:59:27 |
depth | 2 |
children | 0 |
last_payout | 2019-05-19 14:59:27 |
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 | 117 |
author_reputation | 2,100,519,034,865 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,725,006 |
net_rshares | 0 |
<p>Congratulations! This post has been upvoted from the communal account, @minnowsupport, by JapAlekhin from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, someguy123, neoxian, followbtcnews, and netuoso. The goal is to help Steemit grow by supporting Minnows. Please find us at the <a href="https://discord.gg/HYj4yvw"> Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p> <p>If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=102530.639667%20VESTS">50SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=205303.639667%20VESTS">100SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=514303.639667%20VESTS">250SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=1025303.639667%20VESTS">500SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=2053030.639667%20VESTS">1000SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=10253030.639667%20VESTS">5000SP</a>. <br><strong>Be sure to leave at least 50SP undelegated on your account.</strong></p>
author | minnowsupport |
---|---|
permlink | re-setting-up-a-widget-tree-based-game-with-flame-and-flutter-20190511t210720z |
category | originalworks |
json_metadata | "{"app": "beem/0.20.20"}" |
created | 2019-05-11 21:07:21 |
last_update | 2019-05-11 21:07:21 |
depth | 1 |
children | 0 |
last_payout | 2019-05-18 21:07:21 |
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 | 1,693 |
author_reputation | 148,902,805,319,183 |
root_title | "Setting Up a Widget-Tree Based Game with Flame and Flutter" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,683,360 |
net_rshares | 0 |