dynamic_timeline_tile_flutter 0.0.1 copy "dynamic_timeline_tile_flutter: ^0.0.1" to clipboard
dynamic_timeline_tile_flutter: ^0.0.1 copied to clipboard

Fully Dynamic and customized timelineTile, where you can create a multi events list within the dates and customized child widgets..

example/lib/main.dart

import 'package:example/Tiles/DynamicTimelineTileList.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';

void main() {
  SystemChrome.setPreferredOrientations([
    DeviceOrientation.portraitUp,
  ]);
  SystemChrome.setSystemUIOverlayStyle(const SystemUiOverlayStyle(
    statusBarColor: Colors.transparent,
  ));
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return ScreenUtilInit(
      designSize: const Size(360, 690),
      minTextAdapt: true,
      splitScreenMode: true,
      builder: (context, child) {
        return MaterialApp(
          debugShowCheckedModeBanner: false,
          title: 'Dynamic_Timeline_Tile_Flutter_Demo',
          theme: ThemeData(
              scaffoldBackgroundColor: Colors.white,
              primarySwatch: Colors.blue,
              useMaterial3: true),
          home:  const TestDynamicTimeLineTileBuilder(),
        );
      },
    );
  }
}
16
likes
0
points
33
downloads

Publisher

unverified uploader

Weekly Downloads

Fully Dynamic and customized timelineTile, where you can create a multi events list within the dates and customized child widgets..

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on dynamic_timeline_tile_flutter