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'; | |
import 'dart:math'; | |
import 'package:file_picker/file_picker.dart'; | |
import 'package:firebase_storage/firebase_storage.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:auto_size_text/auto_size_text.dart'; | |
import 'package:cloud_firestore/cloud_firestore.dart'; | |
import 'package:flutter_native_image/flutter_native_image.dart'; | |
import 'package:cached_network_image/cached_network_image.dart'; |
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:math'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/services.dart'; | |
List<Song> songs = [ | |
Song('Behaviour of the mind', '3:25'), | |
Song('Your inner voice', '2:41'), | |
Song('Embrace your emotions', '3:16'), | |
Song('Letting go everything', '3:38'), |
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( | |
title: 'Flutter Demo', | |
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
class MyApp26April extends StatelessWidget { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Server', | |
debugShowCheckedModeBanner: false, | |
theme: ThemeData( | |
primarySwatch: Colors.pink, | |
), |
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 'dart:async'; | |
import 'dart:io'; | |
import 'package:path_provider/path_provider.dart'; | |
void main() => runApp(MaterialApp( | |
home: FirstScreen(), | |
)); | |
extension NumberFormat on int { |
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:turkiye_il_ilce_mahalle/turkiye_il_ilce_mahalle.dart'; | |
import '../common_widget/social_log_in_button.dart'; | |
// screen recording video: https://youtu.be/-pIGYbtJtd0 | |
class AbonelikFormu extends StatefulWidget { | |
@override | |
_AbonelikFormuState createState() => _AbonelikFormuState(); |
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
const { fcm } = require('../admin'); | |
const functions = require('firebase-functions'); | |
const duyuruBidirimiGonder = functions.firestore.document('duyurular/{baslik}').onCreate(async (veri) => { | |
const baslik = veri.data().baslik; | |
const mesaj = veri.data().mesaj; | |
const tarih = veri.data().tarih; | |
const yayinlayan = veri.data().yayinlayan; | |
const bildirim = { |
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
const { db, admin } = require('../admin'); | |
const functions = require('firebase-functions'); | |
const https = require('https'); | |
const runtimeOpts = { | |
timeoutSeconds: 540, // firebase max of 9 minutes | |
} | |
const apiKey = "AIzaS**************************QX0c"; | |
const channelId = "UCrVR30q-Seo82gBhmAe_1uQ"; |
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.c | |
// matris-odevi | |
// | |
// Created by ma on 24.10.2020. | |
// | |
// anlatım videosu: https://youtu.be/AG6vHh1WoLU | |
#include <stdio.h> |
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.c | |
// heap | |
// | |
// Created by ma on 25.11.2020. | |
// | |
#include <stdio.h> | |
int tree_array_size = 20; |
OlderNewer