Posts

डार्ट प्रोग्रामिंग क्या है?

Image
डार्ट एक ओपन-सोर्स सामान्य-प्रयोजन प्रोग्रामिंग भाषा है। यह मूल रूप से विकसित है Google द्वारा। डार्ट सी-शैली वाक्य रचना के साथ एक वस्तु-उन्मुख भाषा है। यह समर्थन करता है प्रोग्रामिंग अवधारणाओं जैसे इंटरफेस, कक्षाएं, अन्य प्रोग्रामिंग भाषाओं के विपरीत डार्ट समर्थन सरणियाँ नहीं है। डार्ट संग्रह का उपयोग डेटा संरचनाओं को दोहराने के लिए किया जा सकता है जैसे सरणियाँ, जेनरिक और वैकल्पिक टाइपिंग. Example.                         void main(){                         p rint("Hii I am Ganesh");                          }                        Output: Hii I am Ganesh Variables and Data types: वैरिएबल को स्टोरेज लोकेशन का नाम दिया गया है और डेटा प्रकार केवल प्रकार और आकार को संदर्भित करता है चर और कार्य...

What is Flutter History of Flutter ?

Image
Flutter is the term of Mobile Application Development. We can Develop Application For Android And IOS with Single code base. Flutter is an open source framework to create high quality, high performance mobile applications across mobile operating systems - Android and iOS. It provides a simple, powerful, efficient and easy to understand SDK to write mobile application in Google’s own language, Dart. In general, developing a mobile application is a complex and challenging task. There are many frameworks available to develop a mobile application. Android provides a native framework based on Java language and iOS provides a native framework based on Objective-C / Swift language. However, to develop an application supporting both the OSs, we need to code in two different languages using two different frameworks. To help overcome this complexity, there exists mobile frameworks supporting both OS. These frameworks range from simple HTML based hybrid mobile application framework (which uses HT...

How to Create a Software Calculator Using Flutter ?

Image
Yes we can make  a Software Calculator in Flutter. because calculators   are  that can automatically carry out a sequence of operations under control of a stored  program , much like a  computer .  A   software calculator   is a   calculator   that has been implemented as a   computer program , rather than as a physical hardware device. we can go for configure our system for flutter. the reason behind of the making calculator in flutter is understanding of knowledge of layouts,widgets and logic development.  Requirements: We have prepared a calculator in Flutter. Using Android Studio With Flutter SDK. Android Studio: 3.6.0 or Visual Studio Android Virtual Device :Any Virtual Device , Android Version : Android 8.1 (Google Play), Hint:Double Click on Emulator icon or select Start from Play Button. Steps of Making of Calculator in Flutter. Step 1: Start Android Studio Android Studio - ...