Skip to content

Instantly share code, notes, and snippets.

View Blasanka's full-sized avatar
🚀
Flutter dev

B Liyanage Asanka Blasanka

🚀
Flutter dev
View GitHub Profile
@Blasanka
Blasanka / SecondFrame.java
Last active July 13, 2017 17:10
This code to demonstrate how to close one JFrame without effecting to another opened JFrame also added the code to close all frame's(System.exit(0)). And this is the part of this link: https://gist.github.com/Blasanka/6fc55a57603a25c5ab136a470e2303ce.This is the second JFrame which includes one JLabel and JButton. Button to close this frame.
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;
@Blasanka
Blasanka / change_text.dart
Last active March 13, 2018 19:47
This is a simple code snippet to use to explain how you can change text status as soon as a button is pressed in Flutter SDK and Dart. You can refer https://slcoderlk.blogspot.com/2018/03/how-to-change-text-status-as-soon-as.html to see whats happening in this code.
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(
@Blasanka
Blasanka / statelesswidget_example.dart
Last active March 22, 2018 12:22
This dart code for the slcoder's tutorial: different between StatelessWidget and StatefulWidget. You can find the gist for StatefulWidget here: https://gist.github.com/Blasanka/42a1d68d6868da0d02bfa8c5cb4f452c.
// 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;
@Blasanka
Blasanka / statefulwidget_example.dart
Created March 22, 2018 12:21
This code created for slcoder's tutorial 'Different between StatelessWidget and StatefulWidget'. you can find the gist for StatelessWidget here: https://gist.github.com/Blasanka/e637bf5a519c02a4e2b84729b27540bf.
// 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();
@Blasanka
Blasanka / poll_app.dart
Last active March 30, 2018 10:18
In this gist you can learn how to save variable value using Shared_Preferences in Dart and Flutter. Also this sample code shows how you can use RaisedButton Widget, Text Widget, ButtonBar Widget, CenterWidget , TextStyle Widget and lot of properties of those widgets. this codee for simple vote cast app. I wanted to show, how you can use shared p…
//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());
@Blasanka
Blasanka / use_images_flutter.dart
Created April 6, 2018 14:25
This simple code snippet explains, how to add images to your flutter app. https://slcoderlk.blogspot.com/
//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',
@Blasanka
Blasanka / container_example.dart
Last active April 14, 2018 18:54
Image is here: https://i.stack.imgur.com/ldYUY.png This example code demonstrate: How to add two rectangles, one is take 60% of the screen while other one take 40%. You can change these according to as you want. And this example explain how to get width of the device screen and how to make your component flexible without fixed values. Also I hav…
//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;
@Blasanka
Blasanka / fragment_flutter.dart
Created April 14, 2018 19:06
If you want complete demonstration about this code please go to slcoderlk.blogspot.com to get full understanding. This code example show you how to change the content of the page without going to a new page(new route) like fragment in android SDK. This snippet used a drawer to change context but you can also use anything rather than a drawer.
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(
@Blasanka
Blasanka / background_image.dart
Last active September 16, 2020 10:25
Lear more in slcoderlk.blogspot.com This code demonstrate how to add background image to your flutter app. Also you have to add assets section and specify images in flutter section. https://gist.github.com/Blasanka/3dece37b5b28f5bbf099581ae4cbe8aa
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(
@Blasanka
Blasanka / pubspec.yaml
Last active April 17, 2018 06:25
This yaml file for how to add background image(gist: https://gist.github.com/Blasanka/74923852d070c4a0c6eb07953ca9ddd5) to flutter app. learn more in slcoderlk.blogspot.com
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