mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
16 lines
472 B
Dart
16 lines
472 B
Dart
import 'package:PiliPlus/models/dynamics/result.dart' show ModuleBlocked;
|
|
import 'package:PiliPlus/pages/article/widgets/opus_content.dart'
|
|
show moduleBlockedItem;
|
|
import 'package:flutter/material.dart';
|
|
|
|
Widget blockedItem(
|
|
BuildContext context, {
|
|
required ThemeData theme,
|
|
required ModuleBlocked blocked,
|
|
}) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 13, vertical: 1),
|
|
child: moduleBlockedItem(context, theme, blocked),
|
|
);
|
|
}
|