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:convert'; | |
import 'dart:io'; | |
import 'package:html/dom.dart'; | |
import 'package:html/parser.dart'; | |
import 'package:dio/dio.dart'; | |
import 'package:pub_semver/pub_semver.dart'; | |
/// 안드로이드 버전을 가져옵니다 | |
/// | |
/// 구글은 API를 제공하지 않습니다 |
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
FORMAT: 1A | |
HOST: https://api.clickup.com/api/v2 | |
# ClickUp 2.0 | |
Let's make people more productive, together. | |
Looking for the v1 documentation? Click [here](https://clickup.com/apiv1). | |
Please use our [feedback board](https://feedback.clickup.com/api-20) to report bugs, feature requests, and collaborate with the community. |
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 wordsGerman =['wie','ich','seine','dass','er','war','für','auf','sind','mit','sie','sein','bei','ein','haben','dies','aus','durch','heiß','Wort','aber','was','einige','ist','es','Sie','oder','hatte','die','von','zu','und','ein','bei','wir','können','aus','andere','waren','die','tun','ihre','Zeit','wenn','werden','wie','sagte','ein','jeder','sagen','tut','Satz','drei','wollen','Luft','gut','auch','spielen','klein','Ende','setzen','Zuhause','lesen','seits','Hafen','groß','buchstabieren','hinzufügen','auch','Lande','hier','muss','groß','hoch','so','folgen','Akt','warum','fragen','Männer','Veränderung','ging','Licht','Art','aus','müssen','Haus','Bild','versuchen','uns','wieder','Tier','Punkt','Mutter','Welt','in der Nähe von','bauen','selbst','Erde','Vater','jeder','neu','Arbeit','Teil','nehmen','erhalten','Ort','gemacht','leben','wo','nach','zurück','wenig','nur','Runde','Mann','Jahr','kam','zeigen','jeder','gut','mir','geben','unsere','unter','Name','sehr','durch','nur','Formular','Satz','groß','denken',' |
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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/cupertino.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { |
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:async'; | |
void main() async { | |
for (int i = 0; i < 5; i++) { | |
String result = await makeFutureTimer( | |
duration: Duration(seconds: 0), | |
action: () { | |
print(DateTime.now()); | |
return 'RETURN VALUE $i'; | |
}, |
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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@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
import 'package:flutter/material.dart'; | |
final Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@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
try { | |
granted = await hasPermissions(); | |
} on PlatformException catch (e) { | |
if (e.message.contains('already')) { | |
} | |
} |
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
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
import 'package:market/image_list_tile.dart'; | |
List<Map<String, dynamic>> list = <Map<String, dynamic>>[ | |
{ | |
'image': |