refactor(ui, core): Deprecate v3
Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
@@ -2,10 +2,16 @@ import 'package:flutter/material.dart';
|
||||
import 'package:stream_chat_flutter/src/extension.dart';
|
||||
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
||||
|
||||
/// {@macro visible_footnote}
|
||||
@Deprecated("Use 'StreamVisibleFootnote' instead")
|
||||
typedef VisibleFootnote = StreamVisibleFootnote;
|
||||
|
||||
/// {@template visible_footnote}
|
||||
/// Widget for displaying a footnote
|
||||
class VisibleFootnote extends StatelessWidget {
|
||||
/// Constructor for creating a [VisibleFootnote]
|
||||
const VisibleFootnote({Key? key}) : super(key: key);
|
||||
/// {@endtemplate}
|
||||
class StreamVisibleFootnote extends StatelessWidget {
|
||||
/// Constructor for creating a [StreamVisibleFootnote]
|
||||
const StreamVisibleFootnote({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
Reference in New Issue
Block a user