Skip to content

Instantly share code, notes, and snippets.

@jediyeti
jediyeti / GoogleCalendarManager.swift
Last active October 22, 2024 17:20
Example of app's events syncing to Google Cal
import Foundation
import GoogleSignIn
import GoogleAPIClientForREST
enum GoogleCalendarManagerError: Error {
case errorWithText(text: String)
}
class GoogleCalendarManager: NSObject {
static let shared = GoogleCalendarManager()
@jediyeti
jediyeti / hello_flutter_world.dart
Created January 26, 2020 15:58
Hello, Flutter World
import 'package:flutter/material.dart';
void main() {
runApp(Text('Hello, Flutter world!'));
}
@jediyeti
jediyeti / stateless_widget.dart
Last active January 28, 2020 11:28
StatelessWidget
import 'package:flutter/material.dart';
void main() {
final firstPageContent = Container(
width: 400.0,
height: 400.0,
decoration: BoxDecoration(
color: Colors.orange,
shape: BoxShape.circle,
),
@jediyeti
jediyeti / basic_widgets.dart
Last active February 4, 2020 06:49
Basic Widgets
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
home: MyHomePage(),
));
}
class MyHomePage extends StatelessWidget {
@override
@jediyeti
jediyeti / material_components.dart
Created January 28, 2020 12:28
Material components
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: 'Flutter Tutorial',
home: TutorialHome(),
));
}
class TutorialHome extends StatelessWidget {
@jediyeti
jediyeti / handling_gestures.dart
Created January 28, 2020 13:37
Handling gestures
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: 'Flutter Tutorial',
themeMode: ThemeMode.light,
home: TutorialHome(),
));
}
@jediyeti
jediyeti / stateful_widget.dart
Created January 29, 2020 12:12
Stateful widget
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: 'Flutter Tutorial',
home: TutorialHome(),
));
}
class TutorialHome extends StatelessWidget {
@jediyeti
jediyeti / advanced_stateful_widget_example.dart
Created January 29, 2020 14:40
advanced stateful widget example
import 'package:flutter/material.dart';
void main() {
runApp(MaterialApp(
title: 'Shopping App',
home: ShoppingList(
products: <Product>[
Product(name: 'Eggs'),
Product(name: 'Flour'),
Product(name: 'Chocolate chips'),
@jediyeti
jediyeti / local_keys.dart
Last active January 30, 2020 14:01
Local keys
import 'package:flutter/material.dart';
import 'dart:math';
// stateless elements scheme
// https://hsto.org/webt/ha/dh/vy/hadhvybi_mhjvuwdiiucmmx2w6i.gif
// stateful elements before tile swap
// https://hsto.org/webt/dh/ay/sh/dhayshomjpkfv7b45fxmx1ecduw.gif
@jediyeti
jediyeti / complex_layout.dart
Created January 30, 2020 16:02
Complex Layout
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
Color color = Theme.of(context).primaryColor;