Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 45.76 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. class KecocokanDarahPage extends StatefulWidget {
  4.   @override
  5.   _KecocokanDarahPageState createState() => _KecocokanDarahPageState();
  6. }
  7.  
  8. class _KecocokanDarahPageState extends State<KecocokanDarahPage> {
  9.   @override
  10.   Widget build(BuildContext context) {
  11.     return Scaffold(
  12.       appBar: AppBar(
  13.         title: Text('Kecocokan Darah'),
  14.       ),
  15.       body: Container(
  16.         child: Center(
  17.           child: Container(
  18.               child: Column(
  19.             crossAxisAlignment: CrossAxisAlignment.start,
  20.             children: <Widget>[
  21.               SizedBox(height: 40),
  22.               Container(
  23.                 width: MediaQuery.of(context).size.width,
  24.                 height: 20,
  25.                 decoration: BoxDecoration(border: Border.all()),
  26.                 child: Center(child: Text('Anda Dapat Menerima Dari')),
  27.               ),
  28.               Row(
  29.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  30.                 children: <Widget>[
  31.                   Container(
  32.                     width: 150,
  33.                     height: 20,
  34.                     decoration: BoxDecoration(border: Border.all()),
  35.                     child: Center(
  36.                         child: Text('Jika Jenis Darah Anda',
  37.                             style: TextStyle(fontWeight: FontWeight.bold))),
  38.                   ),
  39.                   Container(
  40.                     width: 25,
  41.                     height: 20,
  42.                     decoration: BoxDecoration(border: Border.all()),
  43.                     child: Center(child: Text('O-')),
  44.                   ),
  45.                   Container(
  46.                     width: 25,
  47.                     height: 20,
  48.                     decoration: BoxDecoration(border: Border.all()),
  49.                     child: Center(child: Text('O+')),
  50.                   ),
  51.                   Container(
  52.                     width: 25,
  53.                     height: 20,
  54.                     decoration: BoxDecoration(border: Border.all()),
  55.                     child: Center(child: Text('B-')),
  56.                   ),
  57.                   Container(
  58.                     width: 25,
  59.                     height: 20,
  60.                     decoration: BoxDecoration(border: Border.all()),
  61.                     child: Center(child: Text('B+')),
  62.                   ),
  63.                   Container(
  64.                     width: 25,
  65.                     height: 20,
  66.                     decoration: BoxDecoration(border: Border.all()),
  67.                     child: Center(child: Text('A-')),
  68.                   ),
  69.                   Container(
  70.                     width: 25,
  71.                     height: 20,
  72.                     decoration: BoxDecoration(border: Border.all()),
  73.                     child: Center(child: Text('A+')),
  74.                   ),
  75.                   Container(
  76.                     width: 25,
  77.                     height: 20,
  78.                     decoration: BoxDecoration(border: Border.all()),
  79.                     child: Center(child: Text('AB-')),
  80.                   ),
  81.                   Container(
  82.                     width: 25,
  83.                     height: 20,
  84.                     decoration: BoxDecoration(border: Border.all()),
  85.                     child: Center(child: Text('AB+')),
  86.                   ),
  87.                 ],
  88.               ),
  89.               Row(
  90.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  91.                 children: <Widget>[
  92.                   Container(
  93.                     width: 150,
  94.                     height: 20,
  95.                     decoration: BoxDecoration(border: Border.all()),
  96.                     child: Center(
  97.                       child: Text('AB+',
  98.                           style: TextStyle(fontWeight: FontWeight.bold)),
  99.                     ),
  100.                   ),
  101.                   Container(
  102.                     width: 25,
  103.                     height: 20,
  104.                     decoration: BoxDecoration(border: Border.all()),
  105.                     child: Center(child: Text('YA')),
  106.                   ),
  107.                   Container(
  108.                     width: 25,
  109.                     height: 20,
  110.                     decoration: BoxDecoration(border: Border.all()),
  111.                     child: Center(child: Text('YA')),
  112.                   ),
  113.                   Container(
  114.                     width: 25,
  115.                     height: 20,
  116.                     decoration: BoxDecoration(border: Border.all()),
  117.                     child: Center(child: Text('YA')),
  118.                   ),
  119.                   Container(
  120.                     width: 25,
  121.                     height: 20,
  122.                     decoration: BoxDecoration(border: Border.all()),
  123.                     child: Center(child: Text('YA')),
  124.                   ),
  125.                   Container(
  126.                     width: 25,
  127.                     height: 20,
  128.                     decoration: BoxDecoration(border: Border.all()),
  129.                     child: Center(child: Text('YA')),
  130.                   ),
  131.                   Container(
  132.                     width: 25,
  133.                     height: 20,
  134.                     decoration: BoxDecoration(border: Border.all()),
  135.                     child: Center(child: Text('YA')),
  136.                   ),
  137.                   Container(
  138.                     width: 25,
  139.                     height: 20,
  140.                     decoration: BoxDecoration(border: Border.all()),
  141.                     child: Center(child: Text('YA')),
  142.                   ),
  143.                   Container(
  144.                     width: 25,
  145.                     height: 20,
  146.                     decoration: BoxDecoration(border: Border.all()),
  147.                     child: Center(child: Text('YA')),
  148.                   ),
  149.                 ],
  150.               ),
  151.               Row(
  152.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  153.                 children: <Widget>[
  154.                   Container(
  155.                     width: 150,
  156.                     height: 20,
  157.                     decoration: BoxDecoration(border: Border.all()),
  158.                     child: Center(
  159.                         child: Text('AB-',
  160.                             style: TextStyle(fontWeight: FontWeight.bold))),
  161.                   ),
  162.                   Container(
  163.                     width: 25,
  164.                     height: 20,
  165.                     decoration: BoxDecoration(border: Border.all()),
  166.                     child: Center(child: Text('YA')),
  167.                   ),
  168.                   Container(
  169.                     width: 25,
  170.                     height: 20,
  171.                     decoration: BoxDecoration(border: Border.all()),
  172.                     child: Center(child: Text('...')),
  173.                   ),
  174.                   Container(
  175.                     width: 25,
  176.                     height: 20,
  177.                     decoration: BoxDecoration(border: Border.all()),
  178.                     child: Center(child: Text('YA')),
  179.                   ),
  180.                   Container(
  181.                     width: 25,
  182.                     height: 20,
  183.                     decoration: BoxDecoration(border: Border.all()),
  184.                     child: Center(child: Text('...')),
  185.                   ),
  186.                   Container(
  187.                     width: 25,
  188.                     height: 20,
  189.                     decoration: BoxDecoration(border: Border.all()),
  190.                     child: Center(child: Text('YA')),
  191.                   ),
  192.                   Container(
  193.                     width: 25,
  194.                     height: 20,
  195.                     decoration: BoxDecoration(border: Border.all()),
  196.                     child: Center(child: Text('YA')),
  197.                   ),
  198.                   Container(
  199.                     width: 25,
  200.                     height: 20,
  201.                     decoration: BoxDecoration(border: Border.all()),
  202.                     child: Center(child: Text('...')),
  203.                   ),
  204.                   Container(
  205.                     width: 25,
  206.                     height: 20,
  207.                     decoration: BoxDecoration(border: Border.all()),
  208.                     child: Center(child: Text('...')),
  209.                   ),
  210.                 ],
  211.               ),
  212.               Row(
  213.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  214.                 children: <Widget>[
  215.                   Container(
  216.                     width: 150,
  217.                     height: 20,
  218.                     decoration: BoxDecoration(border: Border.all()),
  219.                     child: Center(
  220.                         child: Text('A+',
  221.                             style: TextStyle(fontWeight: FontWeight.bold))),
  222.                   ),
  223.                   Container(
  224.                     width: 25,
  225.                     height: 20,
  226.                     decoration: BoxDecoration(border: Border.all()),
  227.                     child: Center(child: Text('YA')),
  228.                   ),
  229.                   Container(
  230.                     width: 25,
  231.                     height: 20,
  232.                     decoration: BoxDecoration(border: Border.all()),
  233.                     child: Center(child: Text('YA')),
  234.                   ),
  235.                   Container(
  236.                     width: 25,
  237.                     height: 20,
  238.                     decoration: BoxDecoration(border: Border.all()),
  239.                     child: Center(child: Text('...')),
  240.                   ),
  241.                   Container(
  242.                     width: 25,
  243.                     height: 20,
  244.                     decoration: BoxDecoration(border: Border.all()),
  245.                     child: Center(child: Text('...')),
  246.                   ),
  247.                   Container(
  248.                     width: 25,
  249.                     height: 20,
  250.                     decoration: BoxDecoration(border: Border.all()),
  251.                     child: Center(child: Text('YA')),
  252.                   ),
  253.                   Container(
  254.                     width: 25,
  255.                     height: 20,
  256.                     decoration: BoxDecoration(border: Border.all()),
  257.                     child: Center(child: Text('YA')),
  258.                   ),
  259.                   Container(
  260.                     width: 25,
  261.                     height: 20,
  262.                     decoration: BoxDecoration(border: Border.all()),
  263.                     child: Center(child: Text('...')),
  264.                   ),
  265.                   Container(
  266.                     width: 25,
  267.                     height: 20,
  268.                     decoration: BoxDecoration(border: Border.all()),
  269.                     child: Center(child: Text('...')),
  270.                   ),
  271.                 ],
  272.               ),
  273.               Row(
  274.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  275.                 children: <Widget>[
  276.                   Container(
  277.                     width: 150,
  278.                     height: 20,
  279.                     decoration: BoxDecoration(border: Border.all()),
  280.                     child: Center(
  281.                         child: Text('A-',
  282.                             style: TextStyle(fontWeight: FontWeight.bold))),
  283.                   ),
  284.                   Container(
  285.                     width: 25,
  286.                     height: 20,
  287.                     decoration: BoxDecoration(border: Border.all()),
  288.                     child: Center(child: Text('YA')),
  289.                   ),
  290.                   Container(
  291.                     width: 25,
  292.                     height: 20,
  293.                     decoration: BoxDecoration(border: Border.all()),
  294.                     child: Center(child: Text('...')),
  295.                   ),
  296.                   Container(
  297.                     width: 25,
  298.                     height: 20,
  299.                     decoration: BoxDecoration(border: Border.all()),
  300.                     child: Center(child: Text('...')),
  301.                   ),
  302.                   Container(
  303.                     width: 25,
  304.                     height: 20,
  305.                     decoration: BoxDecoration(border: Border.all()),
  306.                     child: Center(child: Text('...')),
  307.                   ),
  308.                   Container(
  309.                     width: 25,
  310.                     height: 20,
  311.                     decoration: BoxDecoration(border: Border.all()),
  312.                     child: Center(child: Text('YA')),
  313.                   ),
  314.                   Container(
  315.                     width: 25,
  316.                     height: 20,
  317.                     decoration: BoxDecoration(border: Border.all()),
  318.                     child: Center(child: Text('...')),
  319.                   ),
  320.                   Container(
  321.                     width: 25,
  322.                     height: 20,
  323.                     decoration: BoxDecoration(border: Border.all()),
  324.                     child: Center(child: Text('...')),
  325.                   ),
  326.                   Container(
  327.                     width: 25,
  328.                     height: 20,
  329.                     decoration: BoxDecoration(border: Border.all()),
  330.                     child: Center(child: Text('...')),
  331.                   ),
  332.                 ],
  333.               ),
  334.               Row(
  335.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  336.                 children: <Widget>[
  337.                   Container(
  338.                     width: 150,
  339.                     height: 20,
  340.                     decoration: BoxDecoration(border: Border.all()),
  341.                     child: Center(
  342.                         child: Text('B+',
  343.                             style: TextStyle(fontWeight: FontWeight.bold))),
  344.                   ),
  345.                   Container(
  346.                     width: 25,
  347.                     height: 20,
  348.                     decoration: BoxDecoration(border: Border.all()),
  349.                     child: Center(child: Text('YA')),
  350.                   ),
  351.                   Container(
  352.                     width: 25,
  353.                     height: 20,
  354.                     decoration: BoxDecoration(border: Border.all()),
  355.                     child: Center(child: Text('YA')),
  356.                   ),
  357.                   Container(
  358.                     width: 25,
  359.                     height: 20,
  360.                     decoration: BoxDecoration(border: Border.all()),
  361.                     child: Center(child: Text('YA')),
  362.                   ),
  363.                   Container(
  364.                     width: 25,
  365.                     height: 20,
  366.                     decoration: BoxDecoration(border: Border.all()),
  367.                     child: Center(child: Text('YA')),
  368.                   ),
  369.                   Container(
  370.                     width: 25,
  371.                     height: 20,
  372.                     decoration: BoxDecoration(border: Border.all()),
  373.                     child: Center(child: Text('...')),
  374.                   ),
  375.                   Container(
  376.                     width: 25,
  377.                     height: 20,
  378.                     decoration: BoxDecoration(border: Border.all()),
  379.                     child: Center(child: Text('...')),
  380.                   ),
  381.                   Container(
  382.                     width: 25,
  383.                     height: 20,
  384.                     decoration: BoxDecoration(border: Border.all()),
  385.                     child: Center(child: Text('...')),
  386.                   ),
  387.                   Container(
  388.                     width: 25,
  389.                     height: 20,
  390.                     decoration: BoxDecoration(border: Border.all()),
  391.                     child: Center(child: Text('...')),
  392.                   ),
  393.                 ],
  394.               ),
  395.               Row(
  396.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  397.                 children: <Widget>[
  398.                   Container(
  399.                     width: 150,
  400.                     height: 20,
  401.                     decoration: BoxDecoration(border: Border.all()),
  402.                     child: Center(
  403.                         child: Text('B-',
  404.                             style: TextStyle(fontWeight: FontWeight.bold))),
  405.                   ),
  406.                   Container(
  407.                     width: 25,
  408.                     height: 20,
  409.                     decoration: BoxDecoration(border: Border.all()),
  410.                     child: Center(child: Text('YA')),
  411.                   ),
  412.                   Container(
  413.                     width: 25,
  414.                     height: 20,
  415.                     decoration: BoxDecoration(border: Border.all()),
  416.                     child: Center(child: Text('...')),
  417.                   ),
  418.                   Container(
  419.                     width: 25,
  420.                     height: 20,
  421.                     decoration: BoxDecoration(border: Border.all()),
  422.                     child: Center(child: Text('YA')),
  423.                   ),
  424.                   Container(
  425.                     width: 25,
  426.                     height: 20,
  427.                     decoration: BoxDecoration(border: Border.all()),
  428.                     child: Center(child: Text('...')),
  429.                   ),
  430.                   Container(
  431.                     width: 25,
  432.                     height: 20,
  433.                     decoration: BoxDecoration(border: Border.all()),
  434.                     child: Center(child: Text('...')),
  435.                   ),
  436.                   Container(
  437.                     width: 25,
  438.                     height: 20,
  439.                     decoration: BoxDecoration(border: Border.all()),
  440.                     child: Center(child: Text('...')),
  441.                   ),
  442.                   Container(
  443.                     width: 25,
  444.                     height: 20,
  445.                     decoration: BoxDecoration(border: Border.all()),
  446.                     child: Center(child: Text('...')),
  447.                   ),
  448.                   Container(
  449.                     width: 25,
  450.                     height: 20,
  451.                     decoration: BoxDecoration(border: Border.all()),
  452.                     child: Center(child: Text('...')),
  453.                   ),
  454.                 ],
  455.               ),
  456.               Row(
  457.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  458.                 children: <Widget>[
  459.                   Container(
  460.                     width: 150,
  461.                     height: 20,
  462.                     decoration: BoxDecoration(border: Border.all()),
  463.                     child: Center(
  464.                         child: Text('O+',
  465.                             style: TextStyle(fontWeight: FontWeight.bold))),
  466.                   ),
  467.                   Container(
  468.                     width: 25,
  469.                     height: 20,
  470.                     decoration: BoxDecoration(border: Border.all()),
  471.                     child: Center(child: Text('YA')),
  472.                   ),
  473.                   Container(
  474.                     width: 25,
  475.                     height: 20,
  476.                     decoration: BoxDecoration(border: Border.all()),
  477.                     child: Center(child: Text('YA')),
  478.                   ),
  479.                   Container(
  480.                     width: 25,
  481.                     height: 20,
  482.                     decoration: BoxDecoration(border: Border.all()),
  483.                     child: Center(child: Text('...')),
  484.                   ),
  485.                   Container(
  486.                     width: 25,
  487.                     height: 20,
  488.                     decoration: BoxDecoration(border: Border.all()),
  489.                     child: Center(child: Text('...')),
  490.                   ),
  491.                   Container(
  492.                     width: 25,
  493.                     height: 20,
  494.                     decoration: BoxDecoration(border: Border.all()),
  495.                     child: Center(child: Text('...')),
  496.                   ),
  497.                   Container(
  498.                     width: 25,
  499.                     height: 20,
  500.                     decoration: BoxDecoration(border: Border.all()),
  501.                     child: Center(child: Text('...')),
  502.                   ),
  503.                   Container(
  504.                     width: 25,
  505.                     height: 20,
  506.                     decoration: BoxDecoration(border: Border.all()),
  507.                     child: Center(child: Text('...')),
  508.                   ),
  509.                   Container(
  510.                     width: 25,
  511.                     height: 20,
  512.                     decoration: BoxDecoration(border: Border.all()),
  513.                     child: Center(child: Text('...')),
  514.                   ),
  515.                 ],
  516.               ),
  517.               Row(
  518.                 mainAxisAlignment: MainAxisAlignment.spaceAround,
  519.                 children: <Widget>[
  520.                   Container(
  521.                     width: 150,
  522.                     height: 20,
  523.                     decoration: BoxDecoration(border: Border.all()),
  524.                     child: Center(
  525.                         child: Text('O-',
  526.                             style: TextStyle(fontWeight: FontWeight.bold))),
  527.                   ),
  528.                   Container(
  529.                     width: 25,
  530.                     height: 20,
  531.                     decoration: BoxDecoration(border: Border.all()),
  532.                     child: Center(child: Text('YA')),
  533.                   ),
  534.                   Container(
  535.                     width: 25,
  536.                     height: 20,
  537.                     decoration: BoxDecoration(border: Border.all()),
  538.                     child: Center(child: Text('...')),
  539.                   ),
  540.                   Container(
  541.                     width: 25,
  542.                     height: 20,
  543.                     decoration: BoxDecoration(border: Border.all()),
  544.                     child: Center(child: Text('...')),
  545.                   ),
  546.                   Container(
  547.                     width: 25,
  548.                     height: 20,
  549.                     decoration: BoxDecoration(border: Border.all()),
  550.                     child: Center(child: Text('...')),
  551.                   ),
  552.                   Container(
  553.                     width: 25,
  554.                     height: 20,
  555.                     decoration: BoxDecoration(border: Border.all()),
  556.                     child: Center(child: Text('...')),
  557.                   ),
  558.                   Container(
  559.                     width: 25,
  560.                     height: 20,
  561.                     decoration: BoxDecoration(border: Border.all()),
  562.                     child: Center(child: Text('...')),
  563.                   ),
  564.                   Container(
  565.                     width: 25,
  566.                     height: 20,
  567.                     decoration: BoxDecoration(border: Border.all()),
  568.                     child: Center(child: Text('...')),
  569.                   ),
  570.                   Container(
  571.                     width: 25,
  572.                     height: 20,
  573.                     decoration: BoxDecoration(border: Border.all()),
  574.                     child: Center(child: Text('...')),
  575.                   ),
  576.                 ],
  577.               ),
  578.             ],
  579.           )),
  580.         ),
  581.       ),
  582.     );
  583.   }
  584. }
  585.  
  586. // class KecocokanDarahPage extends StatefulWidget {
  587. //   @override
  588. //   _KecocokanDarahPageState createState() => _KecocokanDarahPageState();
  589. // }
  590.  
  591. // class _KecocokanDarahPageState extends State<KecocokanDarahPage>
  592. //     with SingleTickerProviderStateMixin {
  593. //   TabController _tabController;
  594. //   @override
  595. //   void initState() {
  596. //     super.initState();
  597. //     _tabController = TabController(length: 8, vsync: this);
  598. //   }
  599.  
  600. //   @override
  601. //   Widget build(BuildContext context) {
  602. //     return Scaffold(
  603. //       appBar: AppBar(
  604. //         title: Text('Kecocokan Darah'),
  605. //         centerTitle: true,
  606. //         backgroundColor: Colors.redAccent,
  607. //       ),
  608. //       body: SingleChildScrollView(
  609. //         child: Column(
  610. //           children: <Widget>[
  611. //             Container(
  612. //               height: MediaQuery.of(context).size.height / 8,
  613. //               child: Align(
  614. //                 alignment: Alignment.centerLeft,
  615. //                 child: TabBar(
  616. //                   indicatorSize: TabBarIndicatorSize.label,
  617. //                   isScrollable: true,
  618. //                   unselectedLabelColor: Colors.grey,
  619. //                   unselectedLabelStyle: TextStyle(fontSize: 15),
  620. //                   indicatorColor: Colors.red,
  621. //                   labelColor: Colors.black,
  622. //                   labelStyle: TextStyle(fontSize: 25.0),
  623. //                   controller: _tabController,
  624. //                   tabs: <Widget>[
  625. //                     Tab(text: "A-"),
  626. //                     Tab(text: "A+"),
  627. //                     Tab(text: "B-"),
  628. //                     Tab(text: "B+"),
  629. //                     Tab(text: "O-"),
  630. //                     Tab(text: "O+"),
  631. //                     Tab(text: "AB-"),
  632. //                     Tab(text: "AB+"),
  633. //                   ],
  634. //                 ),
  635. //               ),
  636. //             ),
  637. //             Container(
  638. //               height: 500.0,
  639. //               child: TabBarView(
  640. //                 controller: _tabController,
  641. //                 children: <Widget>[
  642. //                   Amin(),
  643. //                   Aplus(),
  644. //                   Bmin(),
  645. //                   Bplus(),
  646. //                   Omin(),
  647. //                   Oplus(),
  648. //                   ABmin(),
  649. //                   ABplus(),
  650. //                 ],
  651. //               ),
  652. //             )
  653. //           ],
  654. //         ),
  655. //       ),
  656. //     );
  657. //   }
  658. // }
  659.  
  660. // class Amin extends StatelessWidget {
  661. //   @override
  662. //   Widget build(BuildContext context) {
  663. //     return Container(
  664. //         child: ListView(
  665. //       children: <Widget>[
  666. //         ListTile(
  667. //           leading: CircleAvatar(
  668. //             backgroundColor: Colors.black12,
  669. //             child: Text(
  670. //               "A-",
  671. //               style: TextStyle(color: Colors.black),
  672. //             ),
  673. //           ),
  674. //           title: Text("Cocok"),
  675. //         ),
  676. //         ListTile(
  677. //           leading: CircleAvatar(
  678. //             backgroundColor: Colors.black12,
  679. //             child: Text(
  680. //               "A+",
  681. //               style: TextStyle(color: Colors.black),
  682. //             ),
  683. //           ),
  684. //           title: Text("Cocok"),
  685. //         ),
  686. //         ListTile(
  687. //           leading: CircleAvatar(
  688. //             backgroundColor: Colors.black12,
  689. //             child: Text(
  690. //               "B-",
  691. //               style: TextStyle(color: Colors.black),
  692. //             ),
  693. //           ),
  694. //           title: Text("Cocok"),
  695. //         ),
  696. //         ListTile(
  697. //           leading: CircleAvatar(
  698. //             backgroundColor: Colors.black12,
  699. //             child: Text(
  700. //               "B+",
  701. //               style: TextStyle(color: Colors.black),
  702. //             ),
  703. //           ),
  704. //           title: Text("Cocok"),
  705. //         ),
  706. //         ListTile(
  707. //           leading: CircleAvatar(
  708. //             backgroundColor: Colors.black12,
  709. //             child: Text(
  710. //               "O-",
  711. //               style: TextStyle(color: Colors.black),
  712. //             ),
  713. //           ),
  714. //           title: Text("Cocok"),
  715. //         ),
  716. //         ListTile(
  717. //           leading: CircleAvatar(
  718. //             backgroundColor: Colors.black12,
  719. //             child: Text(
  720. //               "O+",
  721. //               style: TextStyle(color: Colors.black),
  722. //             ),
  723. //           ),
  724. //           title: Text("Cocok"),
  725. //         ),
  726. //         ListTile(
  727. //           leading: CircleAvatar(
  728. //             backgroundColor: Colors.black12,
  729. //             child: Text(
  730. //               "AB-",
  731. //               style: TextStyle(color: Colors.black),
  732. //             ),
  733. //           ),
  734. //           title: Text("Cocok"),
  735. //         ),
  736. //         ListTile(
  737. //           leading: CircleAvatar(
  738. //             backgroundColor: Colors.black12,
  739. //             child: Text(
  740. //               "AB+",
  741. //               style: TextStyle(color: Colors.black),
  742. //             ),
  743. //           ),
  744. //           title: Text("Cocok"),
  745. //         ),
  746. //       ],
  747. //     ));
  748. //   }
  749. // }
  750.  
  751. // class Aplus extends StatelessWidget {
  752. //   @override
  753. //   Widget build(BuildContext context) {
  754. //     return Container(
  755. //         child: ListView(
  756. //       children: <Widget>[
  757. //         ListTile(
  758. //           leading: CircleAvatar(
  759. //             backgroundColor: Colors.black12,
  760. //             child: Text(
  761. //               "A-",
  762. //               style: TextStyle(color: Colors.black),
  763. //             ),
  764. //           ),
  765. //           title: Text("Tidak"),
  766. //         ),
  767. //         ListTile(
  768. //           leading: CircleAvatar(
  769. //             backgroundColor: Colors.black12,
  770. //             child: Text(
  771. //               "A+",
  772. //               style: TextStyle(color: Colors.black),
  773. //             ),
  774. //           ),
  775. //           title: Text("Cocok"),
  776. //         ),
  777. //         ListTile(
  778. //           leading: CircleAvatar(
  779. //             backgroundColor: Colors.black12,
  780. //             child: Text(
  781. //               "B-",
  782. //               style: TextStyle(color: Colors.black),
  783. //             ),
  784. //           ),
  785. //           title: Text("Tidak"),
  786. //         ),
  787. //         ListTile(
  788. //           leading: CircleAvatar(
  789. //             backgroundColor: Colors.black12,
  790. //             child: Text(
  791. //               "B+",
  792. //               style: TextStyle(color: Colors.black),
  793. //             ),
  794. //           ),
  795. //           title: Text("Cocok"),
  796. //         ),
  797. //         ListTile(
  798. //           leading: CircleAvatar(
  799. //             backgroundColor: Colors.black12,
  800. //             child: Text(
  801. //               "O-",
  802. //               style: TextStyle(color: Colors.black),
  803. //             ),
  804. //           ),
  805. //           title: Text("Tidak"),
  806. //         ),
  807. //         ListTile(
  808. //           leading: CircleAvatar(
  809. //             backgroundColor: Colors.black12,
  810. //             child: Text(
  811. //               "O+",
  812. //               style: TextStyle(color: Colors.black),
  813. //             ),
  814. //           ),
  815. //           title: Text("Cocok"),
  816. //         ),
  817. //         ListTile(
  818. //           leading: CircleAvatar(
  819. //             backgroundColor: Colors.black12,
  820. //             child: Text(
  821. //               "AB-",
  822. //               style: TextStyle(color: Colors.black),
  823. //             ),
  824. //           ),
  825. //           title: Text("Tidak"),
  826. //         ),
  827. //         ListTile(
  828. //           leading: CircleAvatar(
  829. //             backgroundColor: Colors.black12,
  830. //             child: Text(
  831. //               "AB+",
  832. //               style: TextStyle(color: Colors.black),
  833. //             ),
  834. //           ),
  835. //           title: Text("Cocok"),
  836. //         ),
  837. //       ],
  838. //     ));
  839. //   }
  840. // }
  841.  
  842. // class Bmin extends StatelessWidget {
  843. //   @override
  844. //   Widget build(BuildContext context) {
  845. //     return Container(
  846. //         child: ListView(
  847. //       children: <Widget>[
  848. //         ListTile(
  849. //           leading: CircleAvatar(
  850. //             backgroundColor: Colors.black12,
  851. //             child: Text(
  852. //               "A-",
  853. //               style: TextStyle(color: Colors.black),
  854. //             ),
  855. //           ),
  856. //           title: Text("Tidak"),
  857. //         ),
  858. //         ListTile(
  859. //           leading: CircleAvatar(
  860. //             backgroundColor: Colors.black12,
  861. //             child: Text(
  862. //               "A+",
  863. //               style: TextStyle(color: Colors.black),
  864. //             ),
  865. //           ),
  866. //           title: Text("Tidak"),
  867. //         ),
  868. //         ListTile(
  869. //           leading: CircleAvatar(
  870. //             backgroundColor: Colors.black12,
  871. //             child: Text(
  872. //               "B-",
  873. //               style: TextStyle(color: Colors.black),
  874. //             ),
  875. //           ),
  876. //           title: Text("Cocok"),
  877. //         ),
  878. //         ListTile(
  879. //           leading: CircleAvatar(
  880. //             backgroundColor: Colors.black12,
  881. //             child: Text(
  882. //               "B+",
  883. //               style: TextStyle(color: Colors.black),
  884. //             ),
  885. //           ),
  886. //           title: Text("Cocok"),
  887. //         ),
  888. //         ListTile(
  889. //           leading: CircleAvatar(
  890. //             backgroundColor: Colors.black12,
  891. //             child: Text(
  892. //               "O-",
  893. //               style: TextStyle(color: Colors.black),
  894. //             ),
  895. //           ),
  896. //           title: Text("Tidak"),
  897. //         ),
  898. //         ListTile(
  899. //           leading: CircleAvatar(
  900. //             backgroundColor: Colors.black12,
  901. //             child: Text(
  902. //               "O+",
  903. //               style: TextStyle(color: Colors.black),
  904. //             ),
  905. //           ),
  906. //           title: Text("Tidak"),
  907. //         ),
  908. //         ListTile(
  909. //           leading: CircleAvatar(
  910. //             backgroundColor: Colors.black12,
  911. //             child: Text(
  912. //               "AB-",
  913. //               style: TextStyle(color: Colors.black),
  914. //             ),
  915. //           ),
  916. //           title: Text("Cocok"),
  917. //         ),
  918. //         ListTile(
  919. //           leading: CircleAvatar(
  920. //             backgroundColor: Colors.black12,
  921. //             child: Text(
  922. //               "AB+",
  923. //               style: TextStyle(color: Colors.black),
  924. //             ),
  925. //           ),
  926. //           title: Text("Cocok"),
  927. //         ),
  928. //       ],
  929. //     ));
  930. //   }
  931. // }
  932.  
  933. // class Bplus extends StatelessWidget {
  934. //   @override
  935. //   Widget build(BuildContext context) {
  936. //     return Container(
  937. //         child: ListView(
  938. //       children: <Widget>[
  939. //         ListTile(
  940. //           leading: CircleAvatar(
  941. //             backgroundColor: Colors.black12,
  942. //             child: Text(
  943. //               "A-",
  944. //               style: TextStyle(color: Colors.black),
  945. //             ),
  946. //           ),
  947. //           title: Text("Tidak"),
  948. //         ),
  949. //         ListTile(
  950. //           leading: CircleAvatar(
  951. //             backgroundColor: Colors.black12,
  952. //             child: Text(
  953. //               "A+",
  954. //               style: TextStyle(color: Colors.black),
  955. //             ),
  956. //           ),
  957. //           title: Text("Tidak"),
  958. //         ),
  959. //         ListTile(
  960. //           leading: CircleAvatar(
  961. //             backgroundColor: Colors.black12,
  962. //             child: Text(
  963. //               "B-",
  964. //               style: TextStyle(color: Colors.black),
  965. //             ),
  966. //           ),
  967. //           title: Text("Tidak"),
  968. //         ),
  969. //         ListTile(
  970. //           leading: CircleAvatar(
  971. //             backgroundColor: Colors.black12,
  972. //             child: Text(
  973. //               "B+",
  974. //               style: TextStyle(color: Colors.black),
  975. //             ),
  976. //           ),
  977. //           title: Text("Cocok"),
  978. //         ),
  979. //         ListTile(
  980. //           leading: CircleAvatar(
  981. //             backgroundColor: Colors.black12,
  982. //             child: Text(
  983. //               "O-",
  984. //               style: TextStyle(color: Colors.black),
  985. //             ),
  986. //           ),
  987. //           title: Text("Tidak"),
  988. //         ),
  989. //         ListTile(
  990. //           leading: CircleAvatar(
  991. //             backgroundColor: Colors.black12,
  992. //             child: Text(
  993. //               "O+",
  994. //               style: TextStyle(color: Colors.black),
  995. //             ),
  996. //           ),
  997. //           title: Text("Tidak"),
  998. //         ),
  999. //         ListTile(
  1000. //           leading: CircleAvatar(
  1001. //             backgroundColor: Colors.black12,
  1002. //             child: Text(
  1003. //               "AB-",
  1004. //               style: TextStyle(color: Colors.black),
  1005. //             ),
  1006. //           ),
  1007. //           title: Text("Tidak"),
  1008. //         ),
  1009. //         ListTile(
  1010. //           leading: CircleAvatar(
  1011. //             backgroundColor: Colors.black12,
  1012. //             child: Text(
  1013. //               "AB+",
  1014. //               style: TextStyle(color: Colors.black),
  1015. //             ),
  1016. //           ),
  1017. //           title: Text("Cocok"),
  1018. //         ),
  1019. //       ],
  1020. //     ));
  1021. //   }
  1022. // }
  1023.  
  1024. // class Omin extends StatelessWidget {
  1025. //   @override
  1026. //   Widget build(BuildContext context) {
  1027. //     return Container(
  1028. //         child: ListView(
  1029. //       children: <Widget>[
  1030. //         ListTile(
  1031. //           leading: CircleAvatar(
  1032. //             backgroundColor: Colors.black12,
  1033. //             child: Text(
  1034. //               "A-",
  1035. //               style: TextStyle(color: Colors.black),
  1036. //             ),
  1037. //           ),
  1038. //           title: Text("Tidak"),
  1039. //         ),
  1040. //         ListTile(
  1041. //           leading: CircleAvatar(
  1042. //             backgroundColor: Colors.black12,
  1043. //             child: Text(
  1044. //               "A+",
  1045. //               style: TextStyle(color: Colors.black),
  1046. //             ),
  1047. //           ),
  1048. //           title: Text("Tidak"),
  1049. //         ),
  1050. //         ListTile(
  1051. //           leading: CircleAvatar(
  1052. //             backgroundColor: Colors.black12,
  1053. //             child: Text(
  1054. //               "B-",
  1055. //               style: TextStyle(color: Colors.black),
  1056. //             ),
  1057. //           ),
  1058. //           title: Text("Tidak"),
  1059. //         ),
  1060. //         ListTile(
  1061. //           leading: CircleAvatar(
  1062. //             backgroundColor: Colors.black12,
  1063. //             child: Text(
  1064. //               "B+",
  1065. //               style: TextStyle(color: Colors.black),
  1066. //             ),
  1067. //           ),
  1068. //           title: Text("Tidak"),
  1069. //         ),
  1070. //         ListTile(
  1071. //           leading: CircleAvatar(
  1072. //             backgroundColor: Colors.black12,
  1073. //             child: Text(
  1074. //               "O-",
  1075. //               style: TextStyle(color: Colors.black),
  1076. //             ),
  1077. //           ),
  1078. //           title: Text("Cocok"),
  1079. //         ),
  1080. //         ListTile(
  1081. //           leading: CircleAvatar(
  1082. //             backgroundColor: Colors.black12,
  1083. //             child: Text(
  1084. //               "O+",
  1085. //               style: TextStyle(color: Colors.black),
  1086. //             ),
  1087. //           ),
  1088. //           title: Text("Cocok"),
  1089. //         ),
  1090. //         ListTile(
  1091. //           leading: CircleAvatar(
  1092. //             backgroundColor: Colors.black12,
  1093. //             child: Text(
  1094. //               "AB-",
  1095. //               style: TextStyle(color: Colors.black),
  1096. //             ),
  1097. //           ),
  1098. //           title: Text("Cocok"),
  1099. //         ),
  1100. //         ListTile(
  1101. //           leading: CircleAvatar(
  1102. //             backgroundColor: Colors.black12,
  1103. //             child: Text(
  1104. //               "AB+",
  1105. //               style: TextStyle(color: Colors.black),
  1106. //             ),
  1107. //           ),
  1108. //           title: Text("Cocok"),
  1109. //         ),
  1110. //       ],
  1111. //     ));
  1112. //   }
  1113. // }
  1114.  
  1115. // class Oplus extends StatelessWidget {
  1116. //   @override
  1117. //   Widget build(BuildContext context) {
  1118. //     return Container(
  1119. //         child: ListView(
  1120. //       children: <Widget>[
  1121. //         ListTile(
  1122. //           leading: CircleAvatar(
  1123. //             backgroundColor: Colors.black12,
  1124. //             child: Text(
  1125. //               "A-",
  1126. //               style: TextStyle(color: Colors.black),
  1127. //             ),
  1128. //           ),
  1129. //           title: Text("Tidak"),
  1130. //         ),
  1131. //         ListTile(
  1132. //           leading: CircleAvatar(
  1133. //             backgroundColor: Colors.black12,
  1134. //             child: Text(
  1135. //               "A+",
  1136. //               style: TextStyle(color: Colors.black),
  1137. //             ),
  1138. //           ),
  1139. //           title: Text("Tidak"),
  1140. //         ),
  1141. //         ListTile(
  1142. //           leading: CircleAvatar(
  1143. //             backgroundColor: Colors.black12,
  1144. //             child: Text(
  1145. //               "B-",
  1146. //               style: TextStyle(color: Colors.black),
  1147. //             ),
  1148. //           ),
  1149. //           title: Text("Tidak"),
  1150. //         ),
  1151. //         ListTile(
  1152. //           leading: CircleAvatar(
  1153. //             backgroundColor: Colors.black12,
  1154. //             child: Text(
  1155. //               "B+",
  1156. //               style: TextStyle(color: Colors.black),
  1157. //             ),
  1158. //           ),
  1159. //           title: Text("Tidak"),
  1160. //         ),
  1161. //         ListTile(
  1162. //           leading: CircleAvatar(
  1163. //             backgroundColor: Colors.black12,
  1164. //             child: Text(
  1165. //               "O-",
  1166. //               style: TextStyle(color: Colors.black),
  1167. //             ),
  1168. //           ),
  1169. //           title: Text("Tidak"),
  1170. //         ),
  1171. //         ListTile(
  1172. //           leading: CircleAvatar(
  1173. //             backgroundColor: Colors.black12,
  1174. //             child: Text(
  1175. //               "O+",
  1176. //               style: TextStyle(color: Colors.black),
  1177. //             ),
  1178. //           ),
  1179. //           title: Text("Cocok"),
  1180. //         ),
  1181. //         ListTile(
  1182. //           leading: CircleAvatar(
  1183. //             backgroundColor: Colors.black12,
  1184. //             child: Text(
  1185. //               "AB-",
  1186. //               style: TextStyle(color: Colors.black),
  1187. //             ),
  1188. //           ),
  1189. //           title: Text("Tidak"),
  1190. //         ),
  1191. //         ListTile(
  1192. //           leading: CircleAvatar(
  1193. //             backgroundColor: Colors.black12,
  1194. //             child: Text(
  1195. //               "AB+",
  1196. //               style: TextStyle(color: Colors.black),
  1197. //             ),
  1198. //           ),
  1199. //           title: Text("Cocok"),
  1200. //         ),
  1201. //       ],
  1202. //     ));
  1203. //   }
  1204. // }
  1205.  
  1206. // class ABmin extends StatelessWidget {
  1207. //   @override
  1208. //   Widget build(BuildContext context) {
  1209. //     return Container(
  1210. //         child: ListView(
  1211. //       children: <Widget>[
  1212. //         ListTile(
  1213. //           leading: CircleAvatar(
  1214. //             backgroundColor: Colors.black12,
  1215. //             child: Text(
  1216. //               "A-",
  1217. //               style: TextStyle(color: Colors.black),
  1218. //             ),
  1219. //           ),
  1220. //           title: Text("Tidak"),
  1221. //         ),
  1222. //         ListTile(
  1223. //           leading: CircleAvatar(
  1224. //             backgroundColor: Colors.black12,
  1225. //             child: Text(
  1226. //               "A+",
  1227. //               style: TextStyle(color: Colors.black),
  1228. //             ),
  1229. //           ),
  1230. //           title: Text("Tidak"),
  1231. //         ),
  1232. //         ListTile(
  1233. //           leading: CircleAvatar(
  1234. //             backgroundColor: Colors.black12,
  1235. //             child: Text(
  1236. //               "B-",
  1237. //               style: TextStyle(color: Colors.black),
  1238. //             ),
  1239. //           ),
  1240. //           title: Text("Tidak"),
  1241. //         ),
  1242. //         ListTile(
  1243. //           leading: CircleAvatar(
  1244. //             backgroundColor: Colors.black12,
  1245. //             child: Text(
  1246. //               "B+",
  1247. //               style: TextStyle(color: Colors.black),
  1248. //             ),
  1249. //           ),
  1250. //           title: Text("Tidak"),
  1251. //         ),
  1252. //         ListTile(
  1253. //           leading: CircleAvatar(
  1254. //             backgroundColor: Colors.black12,
  1255. //             child: Text(
  1256. //               "O-",
  1257. //               style: TextStyle(color: Colors.black),
  1258. //             ),
  1259. //           ),
  1260. //           title: Text("Tidak"),
  1261. //         ),
  1262. //         ListTile(
  1263. //           leading: CircleAvatar(
  1264. //             backgroundColor: Colors.black12,
  1265. //             child: Text(
  1266. //               "O+",
  1267. //               style: TextStyle(color: Colors.black),
  1268. //             ),
  1269. //           ),
  1270. //           title: Text("Cocok"),
  1271. //         ),
  1272. //         ListTile(
  1273. //           leading: CircleAvatar(
  1274. //             backgroundColor: Colors.black12,
  1275. //             child: Text(
  1276. //               "AB-",
  1277. //               style: TextStyle(color: Colors.black),
  1278. //             ),
  1279. //           ),
  1280. //           title: Text("Tidak"),
  1281. //         ),
  1282. //         ListTile(
  1283. //           leading: CircleAvatar(
  1284. //             backgroundColor: Colors.black12,
  1285. //             child: Text(
  1286. //               "AB+",
  1287. //               style: TextStyle(color: Colors.black),
  1288. //             ),
  1289. //           ),
  1290. //           title: Text("Cocok"),
  1291. //         ),
  1292. //       ],
  1293. //     ));
  1294. //   }
  1295. // }
  1296.  
  1297. // class ABplus extends StatelessWidget {
  1298. //   @override
  1299. //   Widget build(BuildContext context) {
  1300. //     return Container(
  1301. //         child: ListView(
  1302. //       children: <Widget>[
  1303. //         ListTile(
  1304. //           leading: CircleAvatar(
  1305. //             backgroundColor: Colors.black12,
  1306. //             child: Text(
  1307. //               "A-",
  1308. //               style: TextStyle(color: Colors.black),
  1309. //             ),
  1310. //           ),
  1311. //           title: Text("Tidak"),
  1312. //         ),
  1313. //         ListTile(
  1314. //           leading: CircleAvatar(
  1315. //             backgroundColor: Colors.black12,
  1316. //             child: Text(
  1317. //               "A+",
  1318. //               style: TextStyle(color: Colors.black),
  1319. //             ),
  1320. //           ),
  1321. //           title: Text("Tidak"),
  1322. //         ),
  1323. //         ListTile(
  1324. //           leading: CircleAvatar(
  1325. //             backgroundColor: Colors.black12,
  1326. //             child: Text(
  1327. //               "B-",
  1328. //               style: TextStyle(color: Colors.black),
  1329. //             ),
  1330. //           ),
  1331. //           title: Text("Tidak"),
  1332. //         ),
  1333. //         ListTile(
  1334. //           leading: CircleAvatar(
  1335. //             backgroundColor: Colors.black12,
  1336. //             child: Text(
  1337. //               "B+",
  1338. //               style: TextStyle(color: Colors.black),
  1339. //             ),
  1340. //           ),
  1341. //           title: Text("Tidak"),
  1342. //         ),
  1343. //         ListTile(
  1344. //           leading: CircleAvatar(
  1345. //             backgroundColor: Colors.black12,
  1346. //             child: Text(
  1347. //               "O-",
  1348. //               style: TextStyle(color: Colors.black),
  1349. //             ),
  1350. //           ),
  1351. //           title: Text("Tidak"),
  1352. //         ),
  1353. //         ListTile(
  1354. //           leading: CircleAvatar(
  1355. //             backgroundColor: Colors.black12,
  1356. //             child: Text(
  1357. //               "O+",
  1358. //               style: TextStyle(color: Colors.black),
  1359. //             ),
  1360. //           ),
  1361. //           title: Text("Tidak"),
  1362. //         ),
  1363. //         ListTile(
  1364. //           leading: CircleAvatar(
  1365. //             backgroundColor: Colors.black12,
  1366. //             child: Text(
  1367. //               "AB-",
  1368. //               style: TextStyle(color: Colors.black),
  1369. //             ),
  1370. //           ),
  1371. //           title: Text("Tidak"),
  1372. //         ),
  1373. //         ListTile(
  1374. //           leading: CircleAvatar(
  1375. //             backgroundColor: Colors.black12,
  1376. //             child: Text(
  1377. //               "AB+",
  1378. //               style: TextStyle(color: Colors.black),
  1379. //             ),
  1380. //           ),
  1381. //           title: Text("Cocok"),
  1382. //         ),
  1383. //       ],
  1384. //     ));
  1385. //   }
  1386. // }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement