mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
16 lines
476 B
Dart
16 lines
476 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(
|
|
ThemeData theme,
|
|
ModuleBlocked moduleBlocked, {
|
|
required double maxWidth,
|
|
}) {
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 13, vertical: 1),
|
|
child: moduleBlockedItem(theme, moduleBlocked, maxWidth - 26),
|
|
);
|
|
}
|