Posts

Showing posts from August, 2023

shorts

 https://youtube.com/shorts/1hpj30Tqsco?feature=share

best flutter resources

  Flutter Resources by Jan 2022 Hello Guys, I am Akshit Madan. I will be sharing the best Flutter Resources on the internet till 2022 January.  Flutter 6 Months Roadmap - https://www.youtube.com/watch?v=ggqPDZ9ATH0 Learning the Basics Codepur YouTube Channel 200 Videos Playlist (Watch 5-6 Videos Daily)- https://www.youtube.com/playlist?list=PLR2qQy0Zxs_UdqAcaipPR3CG1Ly57UlhV    Official Flutter Docs (Go through the concepts which you learnt in the above playlist. Official Documentation is only going to make you an expert) - https://docs.flutter.dev/ Flutter30Days30Concepts (Watch First 20 Videos for UI Concept Clarity) - https://www.youtube.com/playlist?list=PL9n0l8rSshSmiu8ddKebcKCltDfppDkEd Flutter with Firebase - https://www.youtube.com/playlist?list=PLR2qQy0Zxs_VVyTb04FzZ2_lnhSB4rAI- Flutter with Firebase User Authentication - https://www.youtube.com/playlist?list=PLgGjX33Qsw-ENq5MWsPF5nI9OVUyqNwgb Intermediate Projects -  Coding cafe Blog App - https://www....

Minhaj the Founder Story

 Title: The Tech Tycoon: Minhaj's Journey from Code to Fortune Once upon a time in the bustling city of Ranchi, there lived a young man named Minhaj. From a tender age, Minhaj had an insatiable curiosity for technology. He spent countless hours tinkering with gadgets, experimenting with code, and envisioning a world transformed by innovation. Minhaj's journey began in his parent's basement, where he taught himself programming languages and honed his coding skills. Armed with determination and a voracious appetite for learning, he embarked on a mission to revolutionize the tech industry. During his teenage years, Minhaj developed a groundbreaking mobile app that quickly gained popularity. This app, designed to simplify everyday tasks, caught the attention of investors and tech enthusiasts alike. With a modest loan from his family, Minhaj founded his own startup, CodeGenius, with a vision to create user-friendly software that could change lives. In the early days of CodeGeniu...

Minhaj's Failure Stories till the age of 18 (2023)

  Story 1: The Coding Conundrum Minhaj, a passionate tech enthusiast, was excited to create his first mobile app. He spent days coding, debugging, and testing, only to realize that his app crashed upon launch. Disheartened, Minhaj sought help from experienced developers. Through their guidance and his persistence, Minhaj learned the importance of thorough testing and collaborative problem-solving. Story 2: The Startup Stumble Eager to launch his own tech startup, Minhaj poured his heart into developing a revolutionary product. However, despite his dedication, the startup faced financial setbacks and failed to gain traction. Minhaj learned that entrepreneurship involved more than just a great idea – it required strategic planning, market research, and adaptability. Story 3: The Hackathon Hurdle At a hackathon, Minhaj teamed up with fellow coders to develop a groundbreaking software solution. However, due to miscommunication and conflicting ideas, their project didn't meet the compet...

creating a chat message ui in flutter

 import 'package:flutter/material.dart'; void main() {   runApp(MyApp()); } class MyApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       title: 'ChatGPT Clone',       theme: ThemeData(         primarySwatch: Colors.blue,       ),       home: ChatScreen(),     );   } } class ChatScreen extends StatefulWidget {   @override   _ChatScreenState createState() => _ChatScreenState(); } class _ChatScreenState extends State<ChatScreen> {   TextEditingController _controller = TextEditingController();   List<Message> _messages = [];   void _sendMessage(String text) {     setState(() {       _messages.add(Message(text: text, isUser: true));       // Simulate AI response (you can replace this with your actual AI interaction)     ...

course content page

import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       title: 'Video Course Content',       theme: ThemeData(         primarySwatch: Colors.blue,       ),       home: CourseContentPage(),     );   } } class CourseContentPage extends StatelessWidget {   @override   Widget build(BuildContext context) {     return Scaffold(       appBar: AppBar(         title: Text('Course Name'),       ),       body: SingleChildScrollView(         child: Column(           crossAxisAlignment: CrossAxisAlignment.stretch,           children: [             Container(   ...

subscribe text

╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Learning Dart by Akshit Mdaan

  Chapter 1 -- (Variables and Data Types, List and Maps)   void main () { String name = "minhaj " ; bool male = true ; int age = 21 ; List < String > fruits = [ 'apple' , 'bnana' ] ; Map < String , dynamic > myData = { 'name' : name , 'age' : age , 'male' : true , 'favorite fruits' : fruits } ; // performing operation on a list: fruits . add ( 'grapes' ); fruits . addAll ( [ 'jamun' , 'berry' ] ); fruits . sort (); print ( fruits ); bool val = fruits . contains ( 'apple' ); print ( val ); //performing operation on map print ( myData ); print ( myData [ 'name' ] ); print ( myData [ 'age' ] ); print ( myData . keys . toList ()); print ( myData . values . toList ()); print ( myData . containsKey ( 'true' )); } Chapter 2 -- (Variables and Data Types, List and Maps)