Hello, I am Himanshu Sharma a 2nd year engineering student, and you are reading my story about โhow a student who does only coding went to Flutter App Development?โ
In the month of October, my room-mate shared me a link of #BuildForDigitalIndia initiative by Google and Govt. of India for Digital India. So we registered as a team along with other members.
After a few weeks, we got a mail that says we are selected for #BuildForDigitalIndia initiative. We were extremely happy, but now the big question arises โWhat can we do in it?โ. I mean we donโt know any Android Development or Web Development, and half of our team members donโt even code well.
So, I started searching for Android Development. I knew some Web Technologies but I prefer Android Development as I was always interested in Android OS (like Custom ROM/Kernel, rooting and all). And the result I found was Android Development with Java/Kotlin, App development with AWS and Flutter App Development. I tried to work on Kotlin but c
๐
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hey there! Have you heard of IoT? Yes the most popular thing in industry. If not, it is Internet of Things. Do you use smart watches or have you heard about smart city, smart house, these are the practical application of IoT. Didnโt get it?If you just Google โwhat is IoT?โ, you will get a technical answer: | |
โThe Internet of Things (IoT) is a system of interrelated computing devices, mechanical and digital machines, objects, animals or people that are provided with unique identifiers and the ability to transfer data over a network without requiring human-to-human or human-to-computer interaction.โ | |
Simply, The Internet of Things, or IoT, refers to the billions of physical devices around the world that are now connected to the internet, collecting and sharing data. Now youโll ask me โOkay, but why is it so much important?โ. | |
Today majority of devices works on sensors but sensors will not live forever. In other words, cheap sensors are not going to be 100% reliable, 100% of the time. Physical damage during norma |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i386 : iPhone Simulator | |
x86_64 : iPhone Simulator | |
iPhone1,1 : iPhone | |
iPhone1,2 : iPhone 3G | |
iPhone2,1 : iPhone 3GS | |
iPhone3,1 : iPhone 4 | |
iPhone3,2 : iPhone 4 GSM Rev A | |
iPhone3,3 : iPhone 4 CDMA | |
iPhone4,1 : iPhone 4S | |
iPhone5,1 : iPhone 5 (GSM) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'custom_slider_thumb_circle.dart'; | |
class SliderWidget extends StatefulWidget { | |
final double sliderHeight; | |
final int min; | |
final int max; | |
final fullWidth; | |
SliderWidget( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ListView( | |
shrinkWrap: true, | |
primary: false, | |
children: [ | |
listItem(title: "See more", icon: Icons.dashboard_rounded), | |
listItem(title: "Help & Support", icon: Icons.help_rounded), | |
listItem(title: "Setting & Privacy", icon: Icons.settings), | |
ListTile( | |
leading: Icon( | |
Icons.open_in_new_rounded, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Widget listItem({int index, String title, IconData icon}) { | |
return Material( | |
color: Colors.transparent, | |
child: Theme( | |
data: ThemeData(accentColor: Colors.black), | |
child: ExpansionTile( | |
leading: Icon( | |
icon, | |
size: 40, | |
), |
OlderNewer