showTextInputBottomSheet method
dynamic
showTextInputBottomSheet({})
Show the text input bottom sheet
Implementation
showTextInputBottomSheet({
required BuildContext context,
required String title,
required String tips,
required Function(String text) onSubmitted,
required TUITheme theme,
Offset? initOffset,
String? initText,
}) {
TextInputBottomSheet.showTextInputBottomSheet(
context: context,
title: title,
tips: tips,
onSubmitted: onSubmitted,
theme: theme,
initOffset: initOffset,
initText: initText);
}