Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Pure VPN - Up to 27 Months
vgp
Updated:
Today at 8:10 AM
එක පැකේජ් එකයි මාසෙටම Unlimited Internet. තාමත් DATA CARD දාන්න සල්ලි වියදම් කරනවද? අඩුම මිලට අපෙන්.
sayuru bandara
Updated:
Tuesday at 12:30 PM
Ad icon
ඉන්ටර්නෙට් එකෙන් හරියටම සල්ලි හොයන්න සහ Success වෙන්න කැමතිද? 🚀 (E-Money & Success Stories)
siri sumana
Updated:
Saturday at 11:44 PM
Gemini AI PRO 18 months Offer
Hawaka
Updated:
May 27, 2026
Ad icon
koko account
DasunEranga
Updated:
May 27, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
Jobs & Employment
React Native Wanted
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="ackasanka" data-source="post: 25483956" data-attributes="member: 49052"><p>Even though post me this in message, I thought to give the answers here, because some else also get benefit form this.</p><p></p><p>So, here is the thing, Flutter is all about how you structure things, you don't need much complex CSS things</p><p></p><p>Please follow these steps, afterword tell me what is your out put ok</p><p></p><p></p><p><strong><u>Steps: </u></strong></p><p></p><p>01. Flutter is all about rows and columns, since you have web development experience then as i said in this thread at the first you have to learn how to map components in each langues with other langues. For example to understand row and column concept you juts refer this <a href="https://www.w3schools.com/w3css/w3css_grid.asp" target="_blank">W3.css</a></p><p></p><p>This is the best framework anyone can master css skills, most of people go for bootstrap, but just use this and you will see how easy bootstrap afterwards</p><p></p><p>In here you can see each screen consist of <strong>12 columns - this is the key concept here</strong></p><p></p><p>In W3css they refer column as</p><p></p><p><strong>w3-col m6</strong> - this means if you put a class into a div element then it will have 6 column occupied in the total screen (means 50%). Here m means medium size screens ok</p><p></p><p><div class="w3-col m6"></p><p> <p>6 columns on a medium screen</p></p><p> </div></p><p></p><p>If you put like this it means 6 columns on a small screen.</p><p></p><p><div class="w3-col s6"></p><p> <p>6 columns on a small screen.</p></p><p> </div></p><p></p><p>Read the docs for more...</p><p></p><p></p><p>So next , the row is a row means if you want one row with two columns each has width of 50% on screens then you have to do like this</p><p></p><p><div class="w3-row"></p><p> <div class="w3-col m6"></p><p> <p>6 columns on medium screen</p></p><p> </div></p><p> <div class="w3-col m6"></p><p> <p>6 columns on medium screen</p></p><p> </div></p><p></div></p><p></p><p>[ATTACH=full]83431[/ATTACH]</p><p></p><p>So if you understand this concept, then next step is map this with Flutter,</p><p></p><p>02. For that read the Rows, Columns and Container section in this documents. Remember all about Rows & Columns</p><p></p><p>[ATTACH=full]83432[/ATTACH]</p><p></p><p>[ATTACH=full]83433[/ATTACH]</p><p></p><p>So, how to understand a complex screen,<strong> just simple, think all as Rows & Columns like this</strong></p><p></p><p>[ATTACH=full]83434[/ATTACH]</p><p></p><p></p><p>[ATTACH=full]83435[/ATTACH]</p><p></p><p></p><p></p><p></p><p><a href="https://flutter.dev/docs/development/ui/layout" target="_blank">Row&Colums</a> <---Read more</p><p></p><p></p><p></p><p></p><p></p><p>03. Next just view these entire YouTube playlist , each one has 1 min videos and this explain everything to you</p><p></p><p><a href="https://www.youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG" target="_blank">Flutter Widgets</a></p><p></p><p>04. After that, you need to look into here, here they tell how you map your CSS knowledge into Flutter widgets</p><p></p><p><a href="https://flutter.dev/docs/get-started/flutter-for/web-devs" target="_blank">WebToFlutterMapping</a></p><p></p><p></p><p>05. After all these if you really like to learn more then go for here, these are the best resource available to learn</p><p></p><p>First : <a href="https://www.udacity.com/course/build-native-mobile-apps-with-flutter--ud905" target="_blank">Udacity Flutter</a> - this is free watch this first</p><p>Second: <a href="https://www.udemy.com/course/flutter-bootcamp-with-dart/" target="_blank">Udemy Flutter</a> - this is paid but worth for your money</p><p></p><p>So this is the way you have to learn, you have to understand how to map your existing languages knowledge into another languages.</p><p></p><p>Enjoy learning..and post your first app here after trying these in Flutter</p></blockquote><p></p>
[QUOTE="ackasanka, post: 25483956, member: 49052"] Even though post me this in message, I thought to give the answers here, because some else also get benefit form this. So, here is the thing, Flutter is all about how you structure things, you don't need much complex CSS things Please follow these steps, afterword tell me what is your out put ok [B][U]Steps: [/U][/B] 01. Flutter is all about rows and columns, since you have web development experience then as i said in this thread at the first you have to learn how to map components in each langues with other langues. For example to understand row and column concept you juts refer this [URL='https://www.w3schools.com/w3css/w3css_grid.asp']W3.css[/URL] This is the best framework anyone can master css skills, most of people go for bootstrap, but just use this and you will see how easy bootstrap afterwards In here you can see each screen consist of [B]12 columns - this is the key concept here[/B] In W3css they refer column as [B]w3-col m6[/B] - this means if you put a class into a div element then it will have 6 column occupied in the total screen (means 50%). Here m means medium size screens ok <div class="w3-col m6"> <p>6 columns on a medium screen</p> </div> If you put like this it means 6 columns on a small screen. <div class="w3-col s6"> <p>6 columns on a small screen.</p> </div> Read the docs for more... So next , the row is a row means if you want one row with two columns each has width of 50% on screens then you have to do like this <div class="w3-row"> <div class="w3-col m6"> <p>6 columns on medium screen</p> </div> <div class="w3-col m6"> <p>6 columns on medium screen</p> </div> </div> [ATTACH type="full" alt="roe.PNG"]83431[/ATTACH] So if you understand this concept, then next step is map this with Flutter, 02. For that read the Rows, Columns and Container section in this documents. Remember all about Rows & Columns [ATTACH type="full" alt="frow.PNG"]83432[/ATTACH] [ATTACH type="full" alt="fcol.PNG"]83433[/ATTACH] So, how to understand a complex screen,[B] just simple, think all as Rows & Columns like this[/B] [ATTACH type="full" alt="fcomplrx.png"]83434[/ATTACH] [ATTACH type="full" alt="fcom2.png"]83435[/ATTACH] [URL='https://flutter.dev/docs/development/ui/layout']Row&Colums[/URL] <---Read more 03. Next just view these entire YouTube playlist , each one has 1 min videos and this explain everything to you [URL='https://www.youtube.com/playlist?list=PLjxrf2q8roU23XGwz3Km7sQZFTdB996iG']Flutter Widgets[/URL] 04. After that, you need to look into here, here they tell how you map your CSS knowledge into Flutter widgets [URL='https://flutter.dev/docs/get-started/flutter-for/web-devs']WebToFlutterMapping[/URL] 05. After all these if you really like to learn more then go for here, these are the best resource available to learn First : [URL='https://www.udacity.com/course/build-native-mobile-apps-with-flutter--ud905']Udacity Flutter[/URL] - this is free watch this first Second: [URL='https://www.udemy.com/course/flutter-bootcamp-with-dart/']Udemy Flutter[/URL] - this is paid but worth for your money So this is the way you have to learn, you have to understand how to map your existing languages knowledge into another languages. Enjoy learning..and post your first app here after trying these in Flutter [/QUOTE]
Insert quotes…
Verification
Winadiyakata thappara keeyak tibeda?
Post reply
Top
Bottom