Column and Row Widget | Understand it's properties
Column-
A Column is a widget used to display child widgets in a vertical manner. The Column widget does not scroll. If you have a line of widgets and want them to be able to scroll if there is insufficient room, consider using a ListView.
If we wished to display four text widgets within a Column we can create a Column widget like below:
Column(
children: [
Text('Hi'),
Text('This'),
Text('is'),
Text('Column),
],
)
Row-
A Row is a widget used to display child widgets in a horizontal manner. The Row widget does not scroll. If you have a line of widgets and want them to be able to scroll if there is insufficient room, consider using a ListView Class.
If we wished to display four text widgets within a row we can create a Row widget like below:
Row(
children: [
Text('Hi'),
Text('This'),
Text('is'),
Text('Row),
],
)
Column and Row Properties --
mainAxisAlignment :
crossAxisAlignment
Full Course Series, Become a Professional App Developer.
এই Playlist এ, আমি Step By Step Beginner Level থেকে Advance Level পর্যন্ত ভিডিও Upload করবো |
এটা একটা Full Course Playlist হবে Flutter এর উপর |
আমি আশা করছি আপনারা যদি সবকটি ভিডিও মনোযোগ সহকারে দেখেন তাহলে Flutter এর উপর খুব ভাল একটা ধারণা পাবেন এবং Flutter দিয়ে প্রফেশনালি App বানাতে সক্ষম হবেন |
Flutter ছাড়াও আমি আপনাদের জন্য React Native, Mobile Automation Testing, API Automation Testing, Kotlin এবং Big Data Analysis এর উপর ভিডিও Upload করবো |
Flutter Bangla Tutorial, Full Course Series, Become a Professional App Developer.
1. What is Flutter || Flutter কি ?
• Flutter Bangla Tutorial | 01 | What i...
2. Flutter Architecture || Understanding Flutter Architecture
• Flutter Bangla Tutorial | 02 | Flutt...
3. How is Flutter "transferred" to a Native App
• Flutter Bangla Tutorial | 03 | How is...
4. Flutter Mac OS Installation in Bangla || How to install flutter in Mac OS.
• Flutter Bangla Tutorial | 04 | Flutte...
5. Flutter Plugin Installation || How to install flutter in Android studio.
• Flutter Bangla Tutorial [05] Flutter ...
6. Flutter Windows Installation || How to install flutter in Windows Machine
• Flutter Bangla Tutorial | 06 | Flutte...
7. Flutter VS Code setup || Create and environment for Flutter with VS Code
• Flutter Bangla Tutorial | 07 | VS Cod...
8. Build Your First App Using Flutter || Create First Flutter Project
• Flutter Bangla Tutorial | 08 | Build...
আশা করি আপনারা আমার সাথেই থাকবেন | আপনাদের অনুপ্রেরণাই আমাকে সামনে এগিয়ে নিয়ে যাবে | ধন্যবাদ
#ColumnRowWidget #Flutter #FlutterBanglaTutorial