Posts

Showing posts from July, 2020

Flutter concept of Row, Column and others

Image
Flutter concept of Row, Column, and others Row:- When you need the element to be placed side by side in a horizontal (left/right) manner then you need to use the "Row" Flutter Row

Flutter App Example | Flutter Tutorial | For Flutter Developer

Flutter Basic Concept with Example Before you start writing the actual code let's begin with a basic understanding of the generated code from flutter project πŸ€” Step 1: Create the starter Flutter app import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       title: 'Welcome to Flutter',       home: Scaffold(         appBar: AppBar(           title: Text('Welcome to Flutter'),         ),         body: Center(           child: Text('Hello World'),         ),       ),     );   } } First-line above code to import the default flutter package which contains the material design. `void main()=> runApp(MyApp());` : - The main method is bootstrapper here for running the app, which required a Class (MyApp). The MyApp class is StatelessWidget, as I explained the other part in this series in flutter everything mostly considered

Why You Should Learn Flutter App Development in 2020

Image
What is Flutter πŸ™‡ "Flutter" is an open-source mobile UI framework created by "Google" and released in May 2017. It helps one codebase develop 3 types (Android, iOS, Web) of the app. meaning is that you can use one programming (Dart) language and one codebase to create two different apps (for iOS and Android). Official Youtube:  https://www.youtube.com/flutterdev Flutter two key part: "SDK":- A collection of tools that are going to help you develop your applications. This includes tools to compile your code into native machine code (code for iOS and Android). "UI Widget":- A collection of reusable UI elements provided by the Flutter team is called Widget. and in a flutter, every UI element considers a widget.         See Who is using flutter as a New Era of development  If you are a web developer then You can easily understand the Flutter UI Concept Specialty (React JS Developer). Why I like Flutter and learned so fast as a web developer (ReactJS

Intro About ME πŸ‘¨πŸ»‍πŸ’»

Image
Hey There  πŸ‘¨πŸ»‍πŸ’», I'm (Rajesh Prajapati) a Web & Flutter App Developer Mumbai based Company and its located in the Mumbai area. Mostly I work on the website framework bases on Angular, React, Flutter, etc πŸš€. I use HTML, CSS, and JavaScript. Currently working on Flutter, React.js, Express, and Next.js the beginning:- After college, I initially started my career as a Programming Faculty in Mumbai based institute where I started teaching programming like C, C#, then asp.net, Java, and few classes for Javascript. After a few, I realize I should start working on a real project or IT industry where I can learn more practical of programming and more relatable thing which I can develop for people. Follow me on.  Twitter  πŸ¦,  Github  πŸ‘¨πŸ»‍πŸ’»