Untitled

 avatar
unknown
plain_text
3 years ago
7.1 kB
4
Indexable
 Padding(
                    padding:
                        EdgeInsets.only(right: 10, top: 15, bottom: 10, left: 4),
                    child: Container(
                      padding: EdgeInsets.symmetric(
                        horizontal: 10,
                        vertical: 15,
                      ),
                      width: Get.width - 80,
                      decoration: BoxDecoration(
                        color: Colors.white,
                        borderRadius: BorderRadius.circular(10),
                        boxShadow: [
                          BoxShadow(
                            blurRadius: 10.0,
                            color: Colors.black12,
                          )
                        ],
                      ),
                      child: Column(
                        children: [
                          Align(
                            alignment: Alignment.centerLeft,
                            child: KText(
                              text:
                                  'Network Link Installation: Core wise Summary',
                              fontSize: 16,
                              bold: true,
                              maxLines: 2,
                              textOverflow: TextOverflow.visible,
                            ),
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(
                                text: 'Total Target',
                                bold: true,
                                fontSize: 14,
                              ),
                              KText(
                                text: '11,000 Km',
                                bold: true,
                                fontSize: 14,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(text: '4-Core'),
                              KText(
                                text: '60 Km',
                                bold: true,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(text: '8-Core'),
                              KText(
                                text: '20 Km',
                                bold: true,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(text: '12-Core'),
                              KText(
                                text: '10 Km',
                                bold: true,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(text: '24-Core'),
                              KText(
                                text: '10 Km',
                                bold: true,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(text: 'Other Cores'),
                              KText(
                                text: '0 Km',
                                bold: true,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.spaceBetween,
                            children: [
                              KText(
                                text: 'Total Installed',
                                bold: true,
                                fontSize: 14,
                              ),
                              KText(
                                text: '100 Km',
                                bold: true,
                                fontSize: 14,
                              )
                            ],
                          ),
                          Divider(
                            color: Colors.black26,
                          ),
                          Row(
                            mainAxisAlignment: MainAxisAlignment.center,
                            children: [
                              Expanded(
                                flex: 9,
                                child: Padding(
                                  padding: EdgeInsets.symmetric(
                                    horizontal: 0,
                                    vertical: 5,
                                  ),
                                  child: LinearPercentIndicator(
                                    percent: 0.4,
                                    barRadius: Radius.circular(10),
                                    animation: true,
                                    lineHeight: 8.0,
                                    animationDuration: 5000,
                                    progressColor: hexToColor('#FFA133'),
                                  ),
                                ),
                              ),
                              Expanded(
                                flex: 2,
                                child: KText(
                                  text: '0.40 %',
                                  fontSize: 12,
                                ),
                              )
                            ],
                          ),
                        ],
                      ),
                    ),
                  ),
Editor is loading...