mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-01 13:30:21 +00:00
9 lines
233 B
Dart
9 lines
233 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
// MARK: - Shared Builder
|
|
|
|
typedef WidgetBuilder = Widget Function();
|
|
|
|
typedef IndexedCallback = void Function(int index);
|
|
typedef IndexedValueCallback<T> = void Function(T value, int index);
|