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.
36 lines
682 B
Dart
36 lines
682 B
Dart
import 'package:flutter/material.dart';
|
|
import 'dart:core';
|
|
|
|
class CallSettings extends StatefulWidget {
|
|
static String tag = 'call_settings';
|
|
|
|
@override
|
|
_CallSettingsState createState() => _CallSettingsState();
|
|
}
|
|
|
|
class _CallSettingsState extends State<CallSettings> {
|
|
@override
|
|
initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
deactivate() {
|
|
super.deactivate();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text('Settings'),
|
|
),
|
|
body: OrientationBuilder(
|
|
builder: (context, orientation) {
|
|
return Center(child: Text("settings"));
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|