回答:フラッタ:タイムラインUIの答えを作成する

1214 ワード

タイムラインを作成する


Nov 4 ' 19
21

私もオサマの答えが好きですが、ここでは私の迅速なカスタム実装です.それは、線を引くために、CustomPainterを使います.
import 'package:flutter/material.dart';

class Timeline extends StatelessWidget {
  const Timeline({
    @required this.children,
    this.indicators,
    this.isLeftAligned = true,
    this.itemGap = 12.0,
    this.gutterSpacing = 4.0,
    this.padding = const EdgeInsets.all(8),
    this.controller,
    this.lineColor = Colors.grey,
    this.physics,
    this.shrinkWrap
...
Open Full Answer