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
Name: dart | |
Cartridge-Short-Name: DART | |
Display-Name: Dart Cartridge | |
Description: A dart cartridge | |
Version: 0.6.3 | |
License: MIT | |
Vendor: google | |
Cartridge-Version: 0.0.1 | |
Cartridge-Vendor: filirom1 | |
Categories: |
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
Future<Response> helloPost(HttpRequest request) { | |
return request.toList().then((List<List<int>> buffer) { | |
var name = new String.fromCharCodes(buffer.expand((i) => i).toList()); | |
name = name.isNotEmpty ? name : 'World'; | |
return new Response("Hello, $name!"); | |
}); | |
} |
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
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<style> | |
#px { | |
width: 37.8px; | |
height: 37.8px; | |
background: red; | |
} | |
#cm { |
NewerOlder