tiktok_top_info.dart
2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:Parlando/res/resources.dart';
import 'package:Parlando/extension/int_extension.dart';
class TikTokTopInfoColumn extends StatelessWidget {
  final double? bottomPadding;
  final String? info;
  const TikTokTopInfoColumn({
    Key? key,
    this.bottomPadding,
    this.info,
  }) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return SafeArea(
        child: Container(
      margin: EdgeInsets.symmetric(vertical: 40.px, horizontal: 40.px),
      height: 92.px,
      width: double.infinity,
      decoration: BoxDecoration(
        color: Colors.grey.shade200.withOpacity(0.1),
        border: Border.all(color: Colors.grey, width: 0.1), // 边色与边宽度
        // borderRadius: BorderRadius.circular(2.0),
      ),
      child: ClipRect(
        child: BackdropFilter(
          filter: ImageFilter.blur(
            sigmaX: 10.0,
            sigmaY: 10.0,
          ),
          child: Container(
            alignment: Alignment.topLeft,
            decoration: BoxDecoration(
              color: Colors.grey.shade200.withOpacity(0.1),
            ),
            child: Padding(
              padding: EdgeInsets.all(5.px),
              child: Column(
                children: [
                  SizedBox(
                    width: double.infinity,
                    child: Text(
                      '辛丑牛年 庚子月 乙卯日 辰时',
                      style: TextStyle(
                        fontSize: 16.px,
                        color: Colors.white,
                      ),
                    ),
                  ),
                  Gaps.vGap10,
                  SizedBox(
                    width: double.infinity,
                    child: Stack(
                      children: [
                        Text(
                          '早安',
                          style: TextStyle(
                            fontSize: 48.px,
                            color: Colors.white,
                            fontFamily: "ZhiMangXing",
                          ),
                        ),
                        Positioned(
                          right: 10.px,
                          child: const Text(
                            "02日\n2022年01月",
                            style: TextStyle(color: Colors.white),
                          ),
                        ),
                      ],
                    ),
                  ),
                ],
              ),
            ),
          ),
        ),
      ),
    ));
  }
}