mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-29 16:49:10 +08:00
127 lines
3.9 KiB
Dart
127 lines
3.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'common.dart';
|
|
import 'model.dart';
|
|
import 'remote_page.dart';
|
|
|
|
class HomePage extends StatefulWidget {
|
|
HomePage({Key key, this.title}) : super(key: key);
|
|
|
|
final String title;
|
|
|
|
@override
|
|
_HomePageState createState() => _HomePageState();
|
|
}
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
final _idController = TextEditingController();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
Provider.of<FfiModel>(context);
|
|
if (_idController.text.isEmpty) _idController.text = FFI.getId();
|
|
// This method is rerun every time setState is called
|
|
return Scaffold(
|
|
backgroundColor: MyTheme.grayBg,
|
|
appBar: AppBar(
|
|
title: Text(widget.title),
|
|
),
|
|
body: Container(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.max,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
getSearchBarUI(),
|
|
Expanded(child: Container())
|
|
]),
|
|
padding: const EdgeInsets.fromLTRB(16.0, 0.0, 16.0, 0.0),
|
|
));
|
|
}
|
|
|
|
void onConnect() {
|
|
var id = _idController.text.trim();
|
|
if (id == '') return;
|
|
Navigator.push<dynamic>(
|
|
context,
|
|
MaterialPageRoute<dynamic>(
|
|
builder: (BuildContext context) => RemotePage(id: id),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget getSearchBarUI() {
|
|
return Padding(
|
|
padding: const EdgeInsets.only(top: 8.0),
|
|
child: Container(
|
|
height: 84,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(top: 8, bottom: 8),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
color: MyTheme.white,
|
|
borderRadius: const BorderRadius.only(
|
|
bottomRight: Radius.circular(13.0),
|
|
bottomLeft: Radius.circular(13.0),
|
|
topLeft: Radius.circular(13.0),
|
|
topRight: Radius.circular(13.0),
|
|
),
|
|
),
|
|
child: Row(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: Container(
|
|
padding: const EdgeInsets.only(left: 16, right: 16),
|
|
child: TextFormField(
|
|
style: TextStyle(
|
|
fontFamily: 'WorkSans',
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 30,
|
|
color: Color(0xFF00B6F0),
|
|
),
|
|
// keyboardType: TextInputType.number,
|
|
decoration: InputDecoration(
|
|
labelText: 'Remote ID',
|
|
hintText: 'Enter your remote ID',
|
|
border: InputBorder.none,
|
|
helperStyle: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 16,
|
|
color: HexColor('#B9BABC'),
|
|
),
|
|
labelStyle: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 16,
|
|
letterSpacing: 0.2,
|
|
color: HexColor('#B9BABC'),
|
|
),
|
|
),
|
|
autofocus: false,
|
|
controller: _idController,
|
|
),
|
|
),
|
|
),
|
|
SizedBox(
|
|
width: 60,
|
|
height: 60,
|
|
child: IconButton(
|
|
icon: Icon(Icons.arrow_forward,
|
|
color: HexColor('#B9BABC'), size: 45),
|
|
onPressed: onConnect,
|
|
),
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_idController.dispose();
|
|
super.dispose();
|
|
}
|
|
}
|