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
ddsfddfdfdfdfdf |
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 * as React from 'react'; | |
import { View, StyleSheet,Text,TouchableOpacity } from 'react-native'; | |
import { Constants,ImagePicker } from 'expo'; | |
import * as firebase from 'firebase'; | |
import uuid from 'uuid'; | |
//init firebase | |
const firebaseconfig= |
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 | |
extract($_POST); | |
if(isset($submit)) | |
{ | |
switch($operator) | |
{ | |
case '+': | |
$res=$fnumber+$snumber; | |
break; | |
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 'dart:io'; | |
main() | |
{ | |
//WA Program to Swap Numbers Using Temporary Variable | |
var num1,num2,temp; | |
stdout.write("Enter first Number: "); | |
num1=int.parse(stdin.readLineSync()); | |
stdout.write("Enter Second Number: "); | |
num2=int.parse(stdin.readLineSync()); |
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 'dart:io'; | |
main() | |
{ | |
var num1,num2,num3; | |
stdout.write("Enter First Number: "); | |
num1=int.parse(stdin.readLineSync()); | |
stdout.write("Enter Second Number: "); | |
num2=int.parse(stdin.readLineSync()); | |
stdout.write("Enter Third Number: "); | |
num3=int.parse(stdin.readLineSync()); |
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'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
debugShowCheckedModeBanner: false, |
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
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:padding="@dimen/activity_padding"> | |
<View | |
android:id="@+id/thumbnail" | |
android:layout_width="@dimen/placeholder_image" | |
android:layout_height="@dimen/placeholder_image" |
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
package com.example.shimmereffectexample; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import com.facebook.shimmer.ShimmerFrameLayout; | |
public class MainActivity extends AppCompatActivity { | |
ShimmerFrameLayout mShimmerViewContainer; | |
@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
main() | |
{ | |
print("Hello Coders.."); | |
print(10/2); | |
print(10+121); | |
} |
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
main() | |
{ | |
var x = 13; | |
var PI = 3.14; | |
double z = 12; // Equivalent to double z = 12.0. | |
print(x+PI+z); | |
} |
OlderNewer