This file contains hidden or 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
| type interface gpcoders { | |
| name: string | |
| } |
This file contains hidden or 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
| var deferrdPrompt; | |
| if ("serviceWorker" in navigator) { | |
| navigator.serviceWorker | |
| .register("/sw.js") | |
| .then(function() { | |
| console.log("service worker register"); | |
| }) | |
| .catch(function(error) { | |
| console.log(error); | |
| }); |
This file contains hidden or 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'; | |
| import 'package:scoped_model/scoped_model.dart'; | |
| import '../../scoped-models/MainModel.dart'; | |
| import 'signup-steps/profile-information.dart'; | |
| import 'Login.dart'; | |
| import '../../models/User.dart'; | |
| class Register extends StatefulWidget { | |
| @override |
This file contains hidden or 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
| Widget _buildProfileLogo() { | |
| return Container( | |
| decoration: BoxDecoration( | |
| color: Color(0xFF33b667).withOpacity(0.05), | |
| shape: BoxShape.circle, | |
| ), | |
| height: 240.0, | |
| width: 240.0, | |
| child: Center( | |
| child: Container( |
This file contains hidden or 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
| <select> | |
| <option value="93">Afghanistan</option> | |
| <option value="355">Albania</option> | |
| <option value="213">Algeria</option> | |
| <option value="1">American Samoa</option> | |
| <option value="376">Andorra</option> | |
| <option value="244">Angola</option> | |
| <option value="1">Anguilla</option> | |
| <option value="1">Antigua and Barbuda</option> | |
| <option value="54">Argentina</option> |
This file contains hidden or 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
| <?php | |
| $countries = array | |
| ( | |
| 'AF' => 'Afghanistan', | |
| 'AX' => 'Aland Islands', | |
| 'AL' => 'Albania', | |
| 'DZ' => 'Algeria', | |
| 'AS' => 'American Samoa', | |
| 'AD' => 'Andorra', |
This file contains hidden or 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
| //: Playground - noun: a place where people can play | |
| import UIKit | |
| var str = "Hello, playground" | |
| var score = "hello gugu" | |
| score = "i lov gugu" |
This file contains hidden or 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
| <div class="jumbotron"> | |
| <h1>{{ data.title }}</h1> | |
| <p>{{ data.description }}</p> | |
| <form [ngFormModel]="gpForm"> | |
| <div class="form-group"> | |
| <labe for="firstName" id="firstName">First Name</labe> | |
| <input type="text" | |
| class="form-control" |
This file contains hidden or 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
| <div class="jumbotron"> | |
| <h1>{{ data.title }}</h1> | |
| <p>{{ data.description }}</p> | |
| <form #gpForm="ngForm"> | |
| <div class="form-group"> | |
| <labe for="firstName" id="firstName">First Name</labe> | |
| <input type="text" | |
| class="form-control" |
This file contains hidden or 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 { Component } from '@angular/core'; | |
| @Component({ | |
| selector: "bs-panel", | |
| template: ` | |
| <div class="jumbotron"> | |
| <h1>{{ title.title }}</h1> | |
| <p>{{ title.description }}</p> | |
NewerOlder