 [Image Source](https://www.google.com/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&cad=rja&uact=8&ved=2ahUKEwiOi7iavbbdAhVSPBoKHTMnAaYQjRx6BAgBEAU&url=https%3A%2F%2Fionicframework.com%2F&psig=AOvVaw17DMujbSX3XOKGIMmvNdRb&ust=1536876475975821) **Repository**: [Ionic Framework Github Repository](https://github.com/ionic-team/ionic) **Software Requirements**: Visual Studio Code(Or any preferred editor) A browser(Preferably Chrome) **What you will learn:** - How to develop an tab application with ionic with examples that explain concepts poorly documented or simplified - How to use bootstrap for ionic development and using your websites design for your app. - Styling and design methods **Difficulty**: Intermediate **Tutorial**: In this tutorial well be replacing our present app with a ``tab`` template which ionic helps us start easily with basic command requests. The reason for this is that tab templates are way better for user interaction as they are way easier to control and sort of encapsulates all options or menus accesible within a single view. To start up this template to replace the template used in the last tutorial, we will go and overwrite our prior file from our command prompt module. Navigate to your user and use the following code ``` //This start up a new project with our tab template and overwrites our existing template ionic start thebuisnessapp tabs ``` Your command window should give the following output .png) Agree to this and overwrite your former app. To explain the concept of using a pre-existing webpage design for your app design, we would be using a design for a website that has been priorly drafted. This is the websites well be using. .png) For such purpose well be replacing the ``nav-bar`` for this website with the tabs menu and then putting all the design form the individual pages of this site in different parts of the app. So the next thing anyone who is familiar with webpage design using bootstrap and not ionic would be whether or how well be using the bootstrap in our ionic development. You should know that it is totally possible and youll soon see how. **Shortcut tip**: After the dependencies have been installed navigate into your app using ``cd thebuisnessapp`` the type ``code .`` to open your folder in virtual studio code. .png) **Note**: If youre doing everything right your directory should have all these files. So the first thing were going to be doing is as stated earlier replacing our ``navbar`` contents with our tab contents for our app. So in ``thebuisnessapp``, lets say we want three tabs - A home tab where we can see all our transactions - A settings tab where we can change language settings - And Product tab where we can see all the products we have and trade in whatever buisness We would have to change the name of these tabs which are already created 3 by default by ionic. So you navigate to this file ``` src/pages/tabs/tabs.html ``` In that file you should see this content by default ``` <ion-tabs> <ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="home"></ion-tab> <ion-tab [root]="tab2Root" tabTitle="Contact" tabIcon="information-circle"></ion-tab> <ion-tab [root]="tab3Root" tabTitle="About" tabIcon="contacts"></ion-tab> </ion-tabs> ``` First things first, replace the names of the tabs with the custom names we want ``` <ion-tabs> <ion-tab [root]="tab1Root" tabTitle="Home" tabIcon="home"></ion-tab> <ion-tab [root]="tab2Root" tabTitle="Products" tabIcon="information-circle"></ion-tab> <ion-tab [root]="tab3Root" tabTitle="Settings" tabIcon="settings"></ion-tab> </ion-tabs> ``` Then run ``ionic serve`` in your command window to see the changes .png) If you were really observant you'd have noticed that ionic already put in place a settings icon for us in our app just adding ``settings`` to our ``tabIcon`` choice. If you check the [official documentation](https://ionicframework.com/docs/ionicons/) you can find a lot more options of icons that come all together with ionic by default. To understand this better, change the tab icon in the second tab which is our ``products tab`` to ``clipboard`` which is a better illustration of our tabs content, then save and see how this makes it look better. The next thing were going to be doing is changing the look of our home page which is the default first page for our ionic app. Later in this tutorial series i will be showing how to change the default page, and even how to make the app show a certain page only the first time it is launched. So navigate to ``` src/pages/home/home.html //This should be our default content <ion-header> <ion-navbar> <ion-title>Home</ion-title> </ion-navbar> </ion-header> <ion-content padding> <h2>Welcome to Ionic!</h2> <p> This starter project comes with simple tabs-based layout for apps that are going to primarily use a Tabbed UI. </p> <p> Take a look at the <code>src/pages/</code> directory to add or change tabs, update any existing page or create new pages. </p> </ion-content> ``` But we do not want that because we want to add our own styles to this app. Before we do anything i would like you to understand the structure of what were seeing here. If we look well, we can see a ``ion-header``. This is the cause of the sort of header we can see at the top of our app but in this case we do not want it because we do not have a menu layout and well prefer to do all page navigation through our tabs option or through buttons bound to pages. So clear all the content within the ``ion-header``, then save. If you did this right you app should be without a header. and all we should have would be what is within our ``ion-content``. So also clear out all the default writing, leaving us with empty ``ion-content`` tags. So we're now ready to add our bootstrap. For a normal webpage we would have gone to our module and installed all our bootstrap dependencies to our page but in this case well be doing something quite different. Go to [Bootstrap](https://getbootstrap.com) and download all the css and js scripts to your download folder. Open first the css ``bootstrap.min.css`` file and copy everything to ``app.scss``. Were copying it there because whatever css is placed there can be used globally for all pages and that is way more convenient that copying for each pages ``css`` which will make our app have a heavier apk when we compile. So no we can test to see if everything is working by using a simple hello world jumbotron ``` <ion-content padding> <div class="container-fluid"> <div class="jumbotron"> <a class="lead">Hello world</a> </div> </div> </ion-content> ``` This is what our app should look like .png) So in the next of this series well go into design and then after that logic. You can find my code in [Github](https://github.com/yalzeee/The-Buisness-App)
author | yalzeee |
---|---|
permlink | tutorial-ionic-app-development-building-the-buisness-app-part-2 |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","programming","stach","wafrica"],"image":["https://cdn.steemitimages.com/DQmd3bFR2g6FdcbdtoK5Qg3pW4MUQ9vuUzquXB84tB4imty/image.png","https://cdn.steemitimages.com/DQmSVmyqHyfzNR8NeYwdm4W2nerDwKMEumBPxubMkGh4ewR/Screenshot%20(32).png","https://cdn.steemitimages.com/DQmVZJKjA8jYKPYcDHZdrNBSGaVy6VMLgKpoLof5cxM9aye/Screenshot%20(33).png","https://cdn.steemitimages.com/DQmeZXDQWeLAabEvrowo4taL3gZ5C1thaWgdc4KobkD4beR/Screenshot%20(34).png","https://cdn.steemitimages.com/DQmUuDd9brWYME1XAavERCdLbCb74H4zZnWeUvw4jmvpXdx/Screenshot%20(35).png","https://cdn.steemitimages.com/DQmWsYEW3eSaRpLRh4pi1zNuaiqmMeUH1ncMg5Pk4jENuaU/Screenshot%20(36).png"],"links":["https://www.google.com/url?sa=i&rct=j&q=&esrc=s&source=images&cd=&cad=rja&uact=8&ved=2ahUKEwiOi7iavbbdAhVSPBoKHTMnAaYQjRx6BAgBEAU&url=https%3A%2F%2Fionicframework.com%2F&psig=AOvVaw17DMujbSX3XOKGIMmvNdRb&ust=1536876475975821","https://github.com/ionic-team/ionic","https://ionicframework.com/docs/ionicons/","https://getbootstrap.com","https://github.com/yalzeee/The-Buisness-App"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-09-12 23:44:45 |
last_update | 2018-09-12 23:48:24 |
depth | 0 |
children | 12 |
last_payout | 2018-09-19 23:44:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 17.440 HBD |
curator_payout_value | 5.564 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,557 |
author_reputation | 12,484,565,044,191 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,125,728 |
net_rshares | 21,898,683,414,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 9,696,136,393 | 33% | ||
rafalski | 0 | 22,936,440,994 | 48% | ||
followforupvotes | 0 | 5,690,488,223 | 12% | ||
jeaniepearl | 0 | 139,149,599 | 1.02% | ||
nmalove | 0 | 180,587,134 | 1.02% | ||
loshcat | 0 | 3,027,485,112 | 100% | ||
utopian-io | 0 | 21,226,326,257,635 | 14.8% | ||
jaff8 | 0 | 58,209,965,101 | 100% | ||
amosbastian | 0 | 9,821,885,976 | 16.66% | ||
portugalcoin | 0 | 6,851,360,895 | 28% | ||
yalzeee | 0 | 6,016,132,908 | 100% | ||
sudefteri | 0 | 3,231,301,134 | 100% | ||
properfraction | 0 | 597,284,184 | 100% | ||
simplymike | 0 | 33,894,343,895 | 27% | ||
lordjames | 0 | 84,050,405 | 1.02% | ||
wafrica | 0 | 12,095,013,643 | 2.04% | ||
davidisaevv | 0 | 508,491,519 | 100% | ||
dbrowskim | 0 | 509,400,355 | 100% | ||
grammarnazi | 0 | 118,390,479 | 50% | ||
maluninivan | 0 | 519,848,044 | 100% | ||
lilihaovhan | 0 | 507,717,316 | 100% | ||
bornd07 | 0 | 519,517,067 | 100% | ||
suggestboron | 0 | 509,055,269 | 100% | ||
brutalsperm | 0 | 518,967,695 | 100% | ||
syllablesbitcoin | 0 | 508,176,308 | 100% | ||
floorsopera | 0 | 507,512,732 | 100% | ||
sidorovaval | 0 | 507,708,453 | 100% | ||
carsonbak | 0 | 518,445,605 | 100% | ||
miljared | 0 | 518,685,250 | 100% | ||
kaczmareke | 0 | 509,608,168 | 100% | ||
mightypanda | 0 | 20,481,786,289 | 45% | ||
grinmens | 0 | 509,253,503 | 100% | ||
torquesnazzy | 0 | 508,754,555 | 100% | ||
bangbangbooking | 0 | 520,155,679 | 100% | ||
doubtdisney | 0 | 507,208,598 | 100% | ||
moistspotify | 0 | 509,296,362 | 100% | ||
borndead10 | 0 | 507,636,136 | 100% | ||
peruska | 0 | 509,079,349 | 100% | ||
artyr.kalmetov | 0 | 508,738,603 | 100% | ||
tamilaisaeva | 0 | 519,404,112 | 100% | ||
hsufrank | 0 | 517,402,468 | 100% | ||
marina.astakova | 0 | 508,518,766 | 100% | ||
cinnamonclay | 0 | 509,661,158 | 100% | ||
crispysuperb | 0 | 519,762,060 | 100% | ||
freshwan | 0 | 509,115,861 | 100% | ||
easiertingley | 0 | 509,476,313 | 100% | ||
nasturtiumfatty | 0 | 517,973,605 | 100% | ||
donortopmast | 0 | 518,320,747 | 100% | ||
ordinatechert | 0 | 518,084,262 | 100% | ||
indigooccupy | 0 | 509,184,531 | 100% | ||
cogsenchant | 0 | 507,841,858 | 100% | ||
filletsslither | 0 | 519,632,944 | 100% | ||
dunbirdderision | 0 | 508,211,439 | 100% | ||
corvushilt | 0 | 508,396,785 | 100% | ||
herbamazon | 0 | 518,740,044 | 100% | ||
amusingbun | 0 | 509,521,274 | 100% | ||
visitorsahem | 0 | 508,223,453 | 100% | ||
zeepin786 | 0 | 566,108,586 | 100% | ||
silicaundo | 0 | 509,652,214 | 100% | ||
seevalhrona | 0 | 508,681,193 | 100% | ||
quadratour | 0 | 517,686,761 | 100% | ||
raghandy | 0 | 509,063,059 | 100% | ||
fastandcurious | 0 | 3,282,570,406 | 80% | ||
muffintwinning | 0 | 508,749,246 | 100% | ||
medaltrot | 0 | 509,562,723 | 100% | ||
sableside | 0 | 510,181,816 | 100% | ||
oxbowworship | 0 | 507,029,151 | 100% | ||
freeboarddavit | 0 | 507,378,601 | 100% | ||
boardsdew | 0 | 509,297,315 | 100% | ||
dashlone | 0 | 507,394,002 | 100% | ||
loathsomemaps | 0 | 507,142,636 | 100% | ||
fragiletalented | 0 | 508,703,528 | 100% | ||
ybazhenov | 0 | 508,791,641 | 100% | ||
okapitonov88 | 0 | 507,905,586 | 100% | ||
senchiks | 0 | 509,091,039 | 100% | ||
gorzhi3501 | 0 | 509,647,496 | 100% | ||
vzuev88 | 0 | 518,894,795 | 100% | ||
elianton | 0 | 506,860,122 | 100% | ||
spicedwave | 0 | 507,165,384 | 100% | ||
maskoil | 0 | 507,911,723 | 100% | ||
affineclever | 0 | 508,389,517 | 100% | ||
cratevisits | 0 | 509,647,496 | 100% | ||
topkame | 0 | 509,647,496 | 100% | ||
ovariangroups | 0 | 509,574,314 | 100% | ||
roadlifted | 0 | 509,647,496 | 100% | ||
abnormalsystem | 0 | 509,647,496 | 100% | ||
whiskeynovelty | 0 | 509,647,496 | 100% | ||
bullinachinashop | 0 | 2,731,519,786 | 80% | ||
steem-ua | 0 | 431,015,990,488 | 1.83% | ||
ssaffinn | 0 | 509,869,009 | 100% | ||
anmakarov19 | 0 | 509,439,220 | 100% | ||
ekarina10 | 0 | 519,003,443 | 100% | ||
niklitvin | 0 | 518,748,344 | 100% | ||
svlasov1984 | 0 | 509,673,114 | 100% | ||
zelc | 0 | 509,647,496 | 100% | ||
ilovecoding | 0 | 920,846,444 | 10% | ||
nfc | 0 | 3,448,218,154 | 1% |
This is a nice guide, I frequently use guides like this to get new frameworks into place. I have never heard of ionic, so I would have loved to see an intro paragraph about the project. Recently I have been using django for my coffeesource site. Tabbed layout is really powerful, I agree that is gives a very clear interface experience. I look forward to the next entries on design and layout c; I would love to see your personal advice on UI/UX in the next parts, because I have done a lot of research and its still the part of design that I struggle with the most.
author | ecoinstant |
---|---|
permlink | re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t141840599z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-09-13 14:18:12 |
last_update | 2018-09-13 14:20:18 |
depth | 1 |
children | 3 |
last_payout | 2018-09-20 14:18:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.570 HBD |
curator_payout_value | 0.086 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 571 |
author_reputation | 846,782,167,126,576 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,182,837 |
net_rshares | 1,497,338,819,831 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mcfarhat | 0 | 26,162,199,226 | 25% | ||
utopian-io | 0 | 1,465,189,884,282 | 1% | ||
yalzeee | 0 | 5,986,736,323 | 100% |
Hey @ecoinstant Here's a tip for your valuable feedback! @Utopian-io loves and incentivises informative comments. **Contributing on Utopian** Learn how to contribute on <a href="https://join.utopian.io">our website</a>. **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | 20180913t142436318z |
category | utopian-io |
json_metadata | {"tags":["utopian.tip"],"app":"utopian-io"} |
created | 2018-09-13 14:24:36 |
last_update | 2018-09-13 14:24:36 |
depth | 2 |
children | 0 |
last_payout | 2018-09-20 14:24:36 |
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 | 410 |
author_reputation | 152,955,367,999,756 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,183,425 |
net_rshares | 0 |
I'm glad you found it helpful I would recommend ionic for fast and effective app development for any app that isn't too heavy. I can say that if you follow this series, you would be able to develop an ionic application.
author | yalzeee |
---|---|
permlink | re-ecoinstant-re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t142238553z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-09-13 14:22:45 |
last_update | 2018-09-13 14:22:45 |
depth | 2 |
children | 1 |
last_payout | 2018-09-20 14:22:45 |
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 | 219 |
author_reputation | 12,484,565,044,191 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,183,264 |
net_rshares | 0 |
Excellent! I will follow you and maybe build an ionic app in the future! Am working on my tech skills c;
author | ecoinstant |
---|---|
permlink | re-yalzeee-re-ecoinstant-re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t150952613z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-09-13 15:09:24 |
last_update | 2018-09-13 15:09:39 |
depth | 3 |
children | 0 |
last_payout | 2018-09-20 15:09:24 |
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 | 107 |
author_reputation | 846,782,167,126,576 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,187,638 |
net_rshares | 0 |
As a follower of @followforupvotes this post has been randomly selected and upvoted! Enjoy your upvote and have a great day!
author | followforupvotes |
---|---|
permlink | re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t001445195z |
category | utopian-io |
json_metadata | "" |
created | 2018-09-13 00:14:48 |
last_update | 2018-09-13 00:14:48 |
depth | 1 |
children | 0 |
last_payout | 2018-09-20 00:14: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 | 124 |
author_reputation | 24,665,782,446,239 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,127,402 |
net_rshares | 0 |
You have a minor misspelling in the following sentence: <blockquote> Visual Studio Code(Or any prefered editor).</blockquote> It should be <i>preferred</i> instead of <i>prefered</i>.
author | grammarnazi |
---|---|
permlink | re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180912t234439766z |
category | utopian-io |
json_metadata | {"app":"steemit"} |
created | 2018-09-12 23:44:48 |
last_update | 2018-09-12 23:44:48 |
depth | 1 |
children | 0 |
last_payout | 2018-09-19 23:44: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 | 183 |
author_reputation | -144,064,903,190 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,125,735 |
net_rshares | 0 |
Hello! Your post has been resteemed and upvoted by @ilovecoding because **we love coding**! Keep up good work! Consider upvoting this comment to support the @ilovecoding and increase your future rewards! ^_^ Steem On!  *Reply !stop to disable the comment. Thanks!*
author | ilovecoding |
---|---|
permlink | 20180912t234457558z |
category | utopian-io |
json_metadata | {"tags":["ilovecoding"],"app":"ilovecoding"} |
created | 2018-09-12 23:44:57 |
last_update | 2018-09-12 23:44:57 |
depth | 1 |
children | 0 |
last_payout | 2018-09-19 23:44: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 | 323 |
author_reputation | 40,845,997,808 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,125,741 |
net_rshares | 491,118,103 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ilovecoding | 0 | 491,118,103 | 5% |
Thank you for your contribution. Below are the points we suggest after reviewing your tutorial: - Include proof of work under the shape of a gist or your own github repository containing your code. Your repository appears empty. - We suggest you put keywords in the title of what you will explain in your tutorial. - We suggest that this tutorial be of the basic level of difficulty, inserting the bootstrap is quite simple. Thank you for your work in developing your tutorial. We are waiting for the next tutorial. 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/8/21313323). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t204123775z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/21313323","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-09-13 20:41:24 |
last_update | 2018-09-13 20:41:24 |
depth | 1 |
children | 1 |
last_payout | 2018-09-20 20:41:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.459 HBD |
curator_payout_value | 1.471 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,011 |
author_reputation | 599,460,335,323,040 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,212,677 |
net_rshares | 8,088,833,297,091 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 8,879,964,365 | 30% | ||
pixelfan | 0 | 1,961,052,066 | 0.55% | ||
utopian-io | 0 | 8,061,136,752,719 | 5.33% | ||
organicgardener | 0 | 1,375,245,617 | 15% | ||
reazuliqbal | 0 | 6,044,228,717 | 10% | ||
mightypanda | 0 | 4,352,379,586 | 10% | ||
anonyvoter | 0 | 1,212,834,875 | 50% | ||
fastandcurious | 0 | 2,117,819,222 | 50% | ||
bullinachinashop | 0 | 1,753,019,924 | 50% |
Thank you for your review, @portugalcoin! So far this week you've reviewed 2 contributions. Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-yalzeee-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t204123775z-20180918t025307z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-09-18 02:53:09 |
last_update | 2018-09-18 02:53:09 |
depth | 2 |
children | 0 |
last_payout | 2018-09-25 02:53:09 |
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 | 115 |
author_reputation | 152,955,367,999,756 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,541,895 |
net_rshares | 0 |
#### Hi @yalzeee! 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-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180914t114516z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.54"}" |
created | 2018-09-14 11:45:18 |
last_update | 2018-09-14 11:45:18 |
depth | 1 |
children | 0 |
last_payout | 2018-09-21 11:45: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 | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,267,391 |
net_rshares | 0 |
Hey, @yalzeee! **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-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180919t013813z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-09-19 01:38:15 |
last_update | 2018-09-19 01:38:15 |
depth | 1 |
children | 0 |
last_payout | 2018-09-26 01:38: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 | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,631,831 |
net_rshares | 0 |
Hello! I find your post valuable for the wafrica community! Thanks for the great post! We encourage and support quality contents and projects from the West African region.<br>Do you have a suggestion, concern or want to appear as a guest author on WAfrica, join our [discord server](https://discord.gg/AfFUhnC) and discuss with a member of our curation team.<br>Don't forget to join us every Sunday by 20:30GMT for our Sunday WAFRO party on our [discord channel](https://discord.gg/AfFUhnC). Thank you.
author | wafrica |
---|---|
permlink | re-tutorial-ionic-app-development-building-the-buisness-app-part-2-20180913t023853 |
category | utopian-io |
json_metadata | "" |
created | 2018-09-13 02:38:54 |
last_update | 2018-09-13 02:38:54 |
depth | 1 |
children | 0 |
last_payout | 2018-09-20 02:38:54 |
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 | 503 |
author_reputation | 38,945,611,432,157 |
root_title | "[Tutorial]: Ionic App Development: Building the buisness app part 2" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,136,471 |
net_rshares | 0 |