Instance | Branch |
---|
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
/* | |
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 = { |
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
/* | |
* Developer: Jorge Wander Santana Urena | |
* Designer: David Rivera | |
*/ | |
import 'package:flutter/material.dart'; | |
main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
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
/* | |
* 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()); |
Curso Django 2.1 - 01. Introducción e instalación de requisitos
Download the next link https://bootstrap.pypa.io/get-pip.py
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 all branches with authors and date information
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
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> |