Skip to content

Instantly share code, notes, and snippets.

View jorwan's full-sized avatar

Jorge Wander Santana Ureña jorwan

View GitHub Profile
/*
Author: Jorge Wander Santana Urena
Goal: Paint a Tree View of Checkbox List
Source: https://gist.github.com/jorwan/abcf91068b7a910ac3388b399b1bb71f
*/
import 'package:flutter/material.dart';
main() {
final data = {
@jorwan
jorwan / stepper_wIdget.dart
Last active August 27, 2020 15:50
UI Stepper Widget
/*
* Developer: Jorge Wander Santana Urena
* Designer: David Rivera
*/
import 'package:flutter/material.dart';
main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
@jorwan
jorwan / PageViewWithPagination.dart
Last active February 27, 2023 00:24
Flutter - Change between page with bottom navigation bar
/*
* Author: Jorge Wander Santana Urena
* Goal: Screen with page view & bottom pagination to change current page
**/
// Import material package to use UI
import 'package:flutter/material.dart';
main() => runApp(MyApp());
@jorwan
jorwan / gist:3af1a68636fd7c3da60240a0d3ab65a7
Created September 5, 2019 14:47 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
@jorwan
jorwan / python-notes.md
Last active July 23, 2019 15:31
Python Notes
@jorwan
jorwan / Xamarin Mac Apps Notes.md
Last active June 28, 2019 20:18
Xamarin Mac Apps Notes

Setting window bar title background color

  // Set window bar title background to transparent
  base.Window.TitlebarAppearsTransparent = true;

  // Set window background color to 5A5C5C
  base.Window.BackgroundColor = NSColor.FromRgb(88 / 255f, 86 / 255f, 86 / 255f);
@jorwan
jorwan / SVN Command Line.md
Last active March 20, 2019 14:31
SVN Command Line

Show file changes in a particular revision

Show all modified files (-v) Their changes (--diff) In a particular revision (-r)

svn log -v --diff -r revision-number[:until-revision-number]  http://x.x.x.x/path/to/svn/project/branch-name/ |more

List branches

List all branches with authors and date information

public static class UtilAnimation
{
/// <summary>
/// Shakes it.
/// </summary>
/// <param name="view">View.</param>
/// <param name="Duration">Duration.</param>
/// <param name="RepeatCount">Repeat count.</param>
/// <param name="MovementDistance">Movement distance.</param>
@jorwan
jorwan / php_commands.md
Last active September 18, 2015 15:04
Php Commands

PHP Commands


Up Php server on localhost with another port
php -S localhost:7654 -t public
@jorwan
jorwan / my_jquery_plugings.md
Last active September 11, 2015 15:51
My Cunstom Jquery Plugings

Custom Jquery Plugin


Rotate Canvas Image from the center registration poing using degree
      /**
      *  Rotate Image in Canvas
      *  @params degree : degree to rotate
 */