Advertisement
Guest User

Untitled

a guest
Nov 1st, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 12.06 KB | None | 0 0
  1. DuckDuckGo
  2.  
  3.     Web
  4.     Images
  5.     Videos
  6.     News
  7.  
  8.     Software
  9.  
  10. Privacy, simplified.
  11.  
  12. dartbin
  13. Tool for packaging Dart programs into standalone executables
  14. More at GitHub
  15. Clone URLhttps://github.com/filiph/dartbin.git
  16. Stars40
  17. Last Updatea year ago
  18. SSH URLgit@github.com:filiph/dartbin.git
  19. Forks2
  20. Open Issues0
  21. Default Branchmaster
  22. I
  23. Austria
  24. Safe Search: Moderate
  25. Any Time
  26. Not many results contain dartbin.Search only for "dartbin"?
  27. Dart Clearance Sale - Buy Now at Darts.com - darts.com
  28. 24 Hour Sale - Fast & Free Shipping Options - We Will Not Be Undersold!
  29. [undefined] www.darts.com/darts/clearance
  30. Report Ad
  31. GitHub - filiph/dartbin: Tool for packaging Dart programs ...
  32. dartbin. A tool for packaging Dart programs into standalone executables. Prerequisites. Go SDK installed; Manual steps. Generate snapshot of your app (dart --snapshot=file.snapshot file.dart)
  33. [Search domain github.com] https://github.com/filiph/dartbin
  34. More results
  35. Dart Container Corporation | Quality Food & Beverage ...
  36. Dart Container Corporation in Mason, MI, is continuing recent campus expansion that has included the addition of a new corporate office facility and warehouse. The latest $40 million investment includes construction of a new technical and innovation center and expanded machine manufacturing operation.
  37. [Search domain www.dartcontainer.com] https://www.dartcontainer.com/home/
  38. Dart Storage Bins & Totes | Staples
  39. Shop Dart Storage Bins & Totes at Staples. Save big on our wide selection of Dart Storage Bins & Totes and get fast & free shipping on select orders.
  40. [Search domain www.staples.com] https://www.staples.com/Dart-Bins-Totes/cat_CL215127/005t3
  41. Dart SDK | Dart
  42. The Dart SDK has the libraries and command-line tools that you need to develop Dart apps. To learn about other tools you can use for Dart development, see Dart Tools. Note: This site's documentation and examples use version 2.0.0 of the Dart SDK.
  43. [Search domain www.dartlang.org] https://www.dartlang.org/tools/sdk
  44. Overview of Microsoft Diagnostics and Recovery Toolset
  45. By providing tools that help you quickly troubleshoot and repair Windows®-based desktops, Microsoft® Diagnostics and Recovery Toolset (DaRT) can reduce the time, cost, and frustration associated with recovering computers that will not boot.
  46. [Search domain technet.microsoft.com] https://technet.microsoft.com/en-us/library/ee532075.aspx
  47. 3 1/2" Egg & Dart Bin Pull In Antique-By-Hand - 3" Center-to ...
  48. Our living antique finish accents the stately pattern of this 1870s style bin pull. Featuring a center medallion surrounded by a classical egg & dart border, it's perfect for any formal kitchen or bath!
  49. [Search domain www.houseofantiquehardware.com] https://www.houseofantiquehardware.com/reproduction-bin-pulls-egg-and-dart-3-1-2...
  50. GitHub - tekartik/process_run.dart: Process run helper
  51. process_run.dart. Process run helpers for Linux/Win/Mac. Goals. Currently using Process.run does not stream output which is not convenient for lenthy operation. It requires using Process.start in a more complex way. run and runCmd add verbose helper for that.
  52. [Search domain github.com] https://github.com/tekartik/process_run.dart
  53. process_run | Dart Package
  54. process_run.dart. Process run helpers for Linux/Win/Mac. Goals. Currently using Process.run does not stream output which is not convenient for lenthy operation. It requires using Process.start in a more complex way. run and runCmd add verbose helper for that.
  55. [Search domain pub.dartlang.org] https://pub.dartlang.org/packages/process_run
  56. Dart Bank | Credit Cards
  57. Dart Bank: Community banking for over 90 years. We are proud to offer our Home Loan Centers and 4 convenient full-service banking locations in Michigan.
  58. [Search domain www.dartbank.com] www.dartbank.com/credit-card.html
  59.  
  60.         Settings
  61.         More Themes
  62.         Other Settings
  63.         Menu
  64.         About
  65.         App
  66.         Bangs
  67.         Spread
  68.         Careers
  69.         Press
  70.         Help
  71.         Privacy
  72.         Blog
  73.         DontTrack.us
  74.         Policy
  75.         Keep in Touch
  76.         Twitter
  77.         Reddit
  78.  
  79. Donating for Privacy
  80.  
  81. Over $1,300,000 in DuckDuckGo privacy donations.
  82. Help Spread DuckDuckGo
  83.  
  84. Help your friends and family join the Duck Side!
  85. Fine-tune Your Search
  86.  
  87. Learn how to search like the pros.
  88. Stay Informed
  89.  
  90. We don't track you, but others do.
  91.  
  92. Learn how to protect your privacy.
  93. import 'package:flutter/material.dart';
  94.  
  95. class MyGames extends StatelessWidget {
  96.  @override
  97.  Widget build(BuildContext context) {
  98.    final windowHeight = MediaQuery.of(context).size.height;
  99.  
  100.    return new Stack(
  101.      children: <Widget>[
  102.        Image(
  103.          image: AssetImage('assets/images/Basket.jpeg'),
  104.          height: windowHeight * 0.60,
  105.          fit: BoxFit.cover,
  106.        ),
  107.        Container(
  108.          width: MediaQuery.of(context).size.width,
  109.          child: Column(
  110.            children: <Widget>[
  111.              Container(
  112.                  padding: EdgeInsets.only(
  113.                    top: 20.0,
  114.                    left: 10.0,
  115.                  ),
  116.                  alignment: Alignment.topLeft,
  117.                  child: Text(
  118.                    'My Games',
  119.                    style: TextStyle(
  120.                      fontWeight: FontWeight.w700,
  121.                      color: Colors.black,
  122.                      fontFamily: 'Raleway',
  123.                      decoration: TextDecoration.none,
  124.                      fontSize: 16.0,
  125.                    ),
  126.                  )),
  127.              Container(
  128.                height: windowHeight * 0.2,
  129.                alignment: Alignment.topLeft,
  130.                margin: EdgeInsets.symmetric(vertical: 10.0),
  131.                child: ListView(
  132.                  scrollDirection: Axis.horizontal,
  133.                  shrinkWrap: true,
  134.                  children: <Widget>[
  135.                    Game(
  136.                      icon: Icons.blur_on,
  137.                      tagText: 'vollyball',
  138.                      gameTitle: 'Ace Mania',
  139.                      description: 'Smart Vision school Ali Mania',
  140.                      startsIn: _in5Days(),
  141.                    ),
  142.                    Game(
  143.                      icon: Icons.blur_on,
  144.                      tagText: 'vollyball',
  145.                      gameTitle: 'Ace Mania',
  146.                      description: 'Smart Vision school Ali Mania',
  147.                      startsIn: _in5Days(),
  148.                    )
  149.                  ],
  150.                ),
  151.              ),
  152.              Container(
  153.                  padding: EdgeInsets.only(
  154.                    top: 20.0,
  155.                    left: 10.0,
  156.                  ),
  157.                  alignment: Alignment.topLeft,
  158.                  child: Text(
  159.                    'Teams',
  160.                    style: TextStyle(
  161.                      fontWeight: FontWeight.w700,
  162.                      color: Colors.black,
  163.                      fontFamily: 'Raleway',
  164.                      decoration: TextDecoration.none,
  165.                      fontSize: 16.0,
  166.                    ),
  167.                  )),
  168.            ],
  169.          ),
  170.          height: windowHeight * 0.5,
  171.          margin: EdgeInsets.only(top: windowHeight * 0.50),
  172.          decoration: BoxDecoration(
  173.              color: Color(0xf5f6f8ff),
  174.              borderRadius: BorderRadius.only(
  175.                topLeft: Radius.circular(20.0),
  176.                topRight: Radius.circular(20.0),
  177.              )),
  178.        ),
  179.        SafeArea(
  180.          child: Container(
  181.            child: Icon(
  182.              Icons.search,
  183.              color: Colors.white,
  184.            ),
  185.            alignment: Alignment.topRight,
  186.            padding: EdgeInsets.only(
  187.              right: 20.0,
  188.            ),
  189.          ),
  190.        )
  191.      ],
  192.    );
  193.  }
  194. }
  195.  
  196. class Game extends StatelessWidget {
  197.  final IconData icon;
  198.  final String tagText;
  199.  final String gameTitle;
  200.  final String description;
  201.  final String startsIn;
  202.  
  203.  Game({
  204.    @required this.icon,
  205.    @required this.tagText,
  206.    @required this.gameTitle,
  207.    @required this.description,
  208.    @required this.startsIn,
  209.  });
  210.  
  211.  @override
  212.  Widget build(BuildContext context) {
  213.    return Container(
  214.      margin: EdgeInsets.symmetric(horizontal: 10.0),
  215.      decoration: BoxDecoration(
  216.          borderRadius: BorderRadius.all(Radius.circular(5.0)),
  217.          color: Colors.white),
  218.      child: Column(
  219.        crossAxisAlignment: CrossAxisAlignment.start,
  220.        children: <Widget>[
  221.          Row(
  222.            children: <Widget>[
  223.              Container(
  224.                padding: EdgeInsets.all(5.0),
  225.                decoration: BoxDecoration(
  226.                    color: Colors.red,
  227.                    borderRadius: BorderRadius.all(Radius.circular(20.0))),
  228.                alignment: Alignment.topLeft,
  229.                margin: EdgeInsets.only(
  230.                  top: 10.0,
  231.                  left: 10.0,
  232.                ),
  233.                height: 25.0,
  234.                child: Icon(
  235.                  this.icon,
  236.                  size: 15.0,
  237.                  color: Colors.white,
  238.                ),
  239.              ),
  240.              Container(
  241.                  margin: EdgeInsets.only(left: 100.0, right: 0.0, top: 10.0),
  242.                  padding: EdgeInsets.all(5.0),
  243.                  decoration: BoxDecoration(
  244.                      border: Border.all(color: Colors.green),
  245.                      borderRadius: BorderRadius.all(Radius.circular(10.0))),
  246.                  child: Text(
  247.                    this.tagText,
  248.                    style: TextStyle(
  249.                        color: Colors.green,
  250.                        fontSize: 8.0,
  251.                        letterSpacing: 2.0,
  252.                        decoration: TextDecoration.none,
  253.                        fontFamily: 'Raleway'),
  254.                  )),
  255.            ],
  256.          ),
  257.          Container(
  258.            margin: EdgeInsets.only(
  259.              left: 10.0,
  260.              top: 10.0,
  261.            ),
  262.            alignment: Alignment.topLeft,
  263.            child: Text(
  264.              this.gameTitle,
  265.              style: TextStyle(
  266.                  fontSize: 15.0,
  267.                  decoration: TextDecoration.none,
  268.                  fontWeight: FontWeight.bold,
  269.                  fontFamily: 'Raleway',
  270.                  color: Colors.black),
  271.            ),
  272.          ),
  273.          Container(
  274.              padding: EdgeInsets.only(left: 10.0),
  275.              child: Text(
  276.                this.description,
  277.                style: TextStyle(
  278.                    decoration: TextDecoration.none,
  279.                    fontFamily: 'Raleway',
  280.                    fontSize: 10.0,
  281.                    fontWeight: FontWeight.w100,
  282.                    color: Colors.black),
  283.              )),
  284.          Container(
  285.            child: Row(
  286.              children: <Widget>[
  287.                Container(
  288.                    padding: EdgeInsets.only(left: 10.0, top: 25.0),
  289.                    margin: EdgeInsets.only(bottom: 5.0),
  290.                    child: Text(
  291.                      this.startsIn,
  292.                      style: TextStyle(
  293.                          color: Colors.black,
  294.                          fontSize: 10.0,
  295.                          decoration: TextDecoration.none,
  296.                          fontFamily: 'Raleway',
  297.                          fontWeight: FontWeight.bold),
  298.                    )),
  299.                Container(
  300.                    padding: EdgeInsets.only(left: 100.0, top: 25.0, right: 10.0),
  301.                    margin: EdgeInsets.only(bottom: 5.0, right: 5.0),
  302.                    alignment: Alignment.topRight,
  303.                    child: Text(
  304.                      '1/4',
  305.                      style: TextStyle(
  306.                          color: Colors.black,
  307.                          fontSize: 10.0,
  308.                          decoration: TextDecoration.none,
  309.                          fontFamily: 'Raleway',
  310.                          fontWeight: FontWeight.w100),
  311.                    )
  312.                )
  313.              ],
  314.            ),
  315.          )
  316.        ],
  317.      ),
  318.    );
  319.  }
  320. }
  321.  
  322. String _in5Days() {
  323.  return "Starts in 5 dats";
  324. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement