You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
588 B
Dart
20 lines
588 B
Dart
4 years ago
|
import 'package:flutter/material.dart';
|
||
3 years ago
|
|
||
4 years ago
|
import 'package:vrouter/vrouter.dart';
|
||
4 years ago
|
|
||
3 years ago
|
import 'settings_multiple_emotes_view.dart';
|
||
4 years ago
|
|
||
|
class MultipleEmotesSettings extends StatefulWidget {
|
||
3 years ago
|
const MultipleEmotesSettings({Key key}) : super(key: key);
|
||
4 years ago
|
|
||
|
@override
|
||
|
MultipleEmotesSettingsController createState() =>
|
||
|
MultipleEmotesSettingsController();
|
||
|
}
|
||
|
|
||
|
class MultipleEmotesSettingsController extends State<MultipleEmotesSettings> {
|
||
4 years ago
|
String get roomId => VRouter.of(context).pathParameters['roomid'];
|
||
4 years ago
|
@override
|
||
4 years ago
|
Widget build(BuildContext context) => MultipleEmotesSettingsView(this);
|
||
4 years ago
|
}
|