mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 03:29:30 +01:00
19 lines
587 B
Dart
19 lines
587 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:vrouter/vrouter.dart';
|
|
|
|
import 'views/settings_multiple_emotes_view.dart';
|
|
|
|
class MultipleEmotesSettings extends StatefulWidget {
|
|
MultipleEmotesSettings({Key key}) : super(key: key);
|
|
|
|
@override
|
|
MultipleEmotesSettingsController createState() =>
|
|
MultipleEmotesSettingsController();
|
|
}
|
|
|
|
class MultipleEmotesSettingsController extends State<MultipleEmotesSettings> {
|
|
String get roomId => VRouter.of(context).pathParameters['roomid'];
|
|
@override
|
|
Widget build(BuildContext context) => MultipleEmotesSettingsView(this);
|
|
}
|