Posts

Showing posts from September, 2020

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

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...