This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(TexColDemo()); | |
| } | |
| class TexColDemo extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /// Implementation of [Card] using the new [MaterialStateProperty] for handling | |
| /// and reacting to user interactions. | |
| class InteractiveCard extends StatefulWidget { | |
| const InteractiveCard({ | |
| Key? key, | |
| this.color, | |
| this.shadowColor, | |
| this.elevation, | |
| this.shape, | |
| this.borderOnForeground = true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:ui'; | |
| import 'package:cached_network_image/cached_network_image.dart'; | |
| import 'package:flutter/cupertino.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/painting.dart'; | |
| void main() { | |
| runApp(const App()); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:collection/collection.dart' show IterableExtension; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| import 'package:stream_chat_flutter/stream_chat_flutter.dart'; | |
| Future<void> main() async { | |
| final client = StreamChatClient( | |
| 's2dxdhpxd94g', | |
| logLevel: Level.INFO, | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Fal Wizper STT Plugin for Stream | |
| Provides real-time audio transcription and translation using fal-ai/wizper (Whisper v3). | |
| This plugin integrates with Stream's audio processing pipeline to provide high-quality | |
| speech-to-text capabilities. | |
| Example usage: | |
| from fal_wizper_stt import FalWizperSTT | |
OlderNewer