This file contains 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 java.awt.event.ActionEvent; | |
import java.awt.event.ActionListener; | |
import javax.swing.BoxLayout; | |
import javax.swing.JButton; | |
import javax.swing.JFrame; | |
import javax.swing.JLabel; | |
public class SecondFrame { | |
JFrame secondFrame; |
This file contains 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'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
title: 'Converter App', | |
theme: new ThemeData( |
This file contains 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
// this example is created by slcoder to explain statelessWidget in slcoder's tutorials. | |
// goto raised button example gist to get statefulWidget code | |
import 'package:flutter/material.dart'; | |
void main() => runApp(new MyApp()); | |
int count = 0; | |
This file contains 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
// this example is created by slcoder to explain statefulWidget in slcoder's tutorials. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(new MyApp()); | |
int _count = 0; | |
class MyApp extends StatefulWidget { | |
_HomePage createState() => new _HomePage(); |
This file contains 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
//In this gist you can learn how to save variable value using Shared_Preferences in Dart and Flutter. | |
//this codee for simple vote cast app. I wanted to show, how you can use shared preferences in flutter and dart. This is the | |
//easiest and understable way. But you can think of a way to do this differently. You can use database, file system and etc | |
//to store data. I will show those in upcoming videos. This code can be optimized and change as like and dislike for yuor app. | |
//This is created for the SL Coder youtube channel video tutorial by blasanka | |
import 'package:flutter/material.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
void main() => runApp(new MyApp()); |
This file contains 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
//this is the example code used in SL Coder - ego coding tutorial videos. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(new AssetExample()); | |
class AssetExample extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
title: 'Assets', |
This file contains 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
//with dart 2 new and const keywords are optional | |
void main() => runApp(new MaterialApp(home: new HomePage(),)); | |
class HomePage extends StatelessWidget { | |
final text = new Text('Text here', style: new TextStyle(fontSize: 50.0),); | |
final margin = const EdgeInsets.only(bottom: 10.0, right: 10.0, left: 10.0); | |
final backColor = Colors.lightGreen; |
This file contains 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'; | |
void main() => runApp(new MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
title: 'Demo', | |
theme: new ThemeData( |
This file contains 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'; | |
void main() => runApp(new QuoteApp()); | |
class QuoteApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return new MaterialApp( | |
title: 'Motivational Quote App', | |
home: new Scaffold( |
This file contains 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
name: motivational_quote_app | |
description: A new Flutter project. | |
dependencies: | |
flutter: | |
sdk: flutter | |
# The following adds the Cupertino Icons font to your application. | |
# Use with the CupertinoIcons class for iOS style icons. | |
cupertino_icons: ^0.1.0 |