CompactTweetView.fromTweet constructor
CompactTweetView.fromTweet(
- Tweet tweet, {
- TextStyle? userNameStyle = defaultCompactUserNameStyle,
- TextStyle? userScreenNameStyle = defaultCompactUserScreenNameStyle,
- TextStyle? textStyle = defaultCompactTextStyle,
- TextStyle? clickableTextStyle = defaultCompactClickableTextStyle,
- TextStyle? retweetInformationTextStyle = defaultCompactRetweetInformationNameStyle,
- TextStyle? quoteUserNameStyle = defaultQuoteUserNameStyle,
- TextStyle? quoteUserScreenNameStyle = defaultQuoteUserScreenNameStyle,
- TextStyle? quoteTextStyle = defaultQuoteTextStyle,
- TextStyle? quoteClickableTextStyle = defaultQuoteClickableTextStyle,
- Color? quoteBorderColor = Colors.grey,
- Color? quoteBackgroundColor = Colors.white,
- Color? backgroundColor = Colors.white,
- bool useVideoPlayer = true,
- double? videoPlayerInitialVolume = 0.0,
- OnTapImage? onTapImage,
- DateFormat? createdDateDisplayFormat,
- bool videoHighQuality = true,
Implementation
CompactTweetView.fromTweet(
Tweet tweet, {
this.userNameStyle = defaultCompactUserNameStyle,
this.userScreenNameStyle = defaultCompactUserScreenNameStyle,
this.textStyle = defaultCompactTextStyle,
this.clickableTextStyle = defaultCompactClickableTextStyle,
this.retweetInformationTextStyle =
defaultCompactRetweetInformationNameStyle,
this.quoteUserNameStyle = defaultQuoteUserNameStyle,
this.quoteUserScreenNameStyle = defaultQuoteUserScreenNameStyle,
this.quoteTextStyle = defaultQuoteTextStyle,
this.quoteClickableTextStyle = defaultQuoteClickableTextStyle,
this.quoteBorderColor = Colors.grey,
this.quoteBackgroundColor = Colors.white,
this.backgroundColor = Colors.white,
this.useVideoPlayer = true,
this.videoPlayerInitialVolume = 0.0,
this.onTapImage,
this.createdDateDisplayFormat,
this.videoHighQuality = true,
}) : _tweetVM = TweetVM.fromApiModel(tweet, createdDateDisplayFormat);