Compare commits
No commits in common. "main" and "v0.3.2" have entirely different histories.
2871 changed files with 11 additions and 64262 deletions
26
.github/workflows/build_and_test_on_push.yml
vendored
26
.github/workflows/build_and_test_on_push.yml
vendored
|
|
@ -1,26 +0,0 @@
|
||||||
name: Cargo Build & Test
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
env:
|
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_and_test:
|
|
||||||
name: Rust project - latest
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
toolchain:
|
|
||||||
- stable
|
|
||||||
- beta
|
|
||||||
- nightly
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- run: sudo apt-get -y install protobuf-compiler
|
|
||||||
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
|
|
||||||
- run: cargo build --verbose
|
|
||||||
- run: cargo test --verbose
|
|
||||||
|
|
||||||
21
LICENSE
21
LICENSE
|
|
@ -1,21 +0,0 @@
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2024 Manuel Keidel, Patryk Hegenberg, Krzysztof Stankiewicz
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
35
README.md
35
README.md
|
|
@ -1,28 +1,22 @@
|
||||||
# Caesar-Transfer
|
# Caesar
|
||||||

|
This program provides a simple relay server that can be controlled via the command line.
|
||||||
|
|
||||||
This program provides a simple end-to_end encrypted filesharing system.
|
|
||||||
Either the cli version or the gui version can be used for this.
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
Rust toolchain installed
|
Rust toolchain installed
|
||||||
## Installation
|
## Installation
|
||||||
1. Clone the repository:
|
1. Clone the repository:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/PatrykHegenberg/caesar-transfer.git
|
git clone https://github.com/your-username/caesar.git
|
||||||
```
|
```
|
||||||
2. Change to the project directory:
|
2. Change to the project directory:
|
||||||
```bash
|
```bash
|
||||||
cd caesar-transfer
|
cd caesar
|
||||||
```
|
```
|
||||||
3. Build the program:
|
3. Build the program:
|
||||||
```bash
|
```bash
|
||||||
cargo build --bin caesar --release
|
cargo build --release
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### cli
|
|
||||||
|
|
||||||
The program offers the following commands:
|
The program offers the following commands:
|
||||||
`serve`
|
`serve`
|
||||||
Starts the relay server.
|
Starts the relay server.
|
||||||
|
|
@ -34,7 +28,7 @@ You can optionally specify the listening address and port using flags:
|
||||||
```bash
|
```bash
|
||||||
./target/release/caesar serve -p 8080 -l 192.168.1.100
|
./target/release/caesar serve -p 8080 -l 192.168.1.100
|
||||||
```
|
```
|
||||||
By default, the server listens on 0.0.0.0:8000.
|
By default, the server listens on 0.0.0.0:1323.
|
||||||
|
|
||||||
`send`
|
`send`
|
||||||
Sends data through the relay server.
|
Sends data through the relay server.
|
||||||
|
|
@ -47,18 +41,7 @@ Receives data through the relay server.
|
||||||
```bash
|
```bash
|
||||||
./target/release/caesar receive
|
./target/release/caesar receive
|
||||||
```
|
```
|
||||||
### GUI
|
|
||||||
To use the Gui version of Ceasar-Transfer, you can download the version that suits you under Releases. Currently supported operating systems are Windows, Linux and Android.
|
|
||||||
#### Desktop
|
|
||||||
Copy the folder contained in the zip/tar file to a folder of your choice and add the path to it to your PATH variable.
|
|
||||||
|
|
||||||
Start the application and configure your relay server in the settings.
|
|
||||||
|
|
||||||
#### Android
|
|
||||||
As the Android version is currently in beta status, the APK must also be downloaded from the release page.
|
|
||||||
Open it with your smartphone's file manager and install it.
|
|
||||||
|
|
||||||
Start the application and configure your relay server in the settings.
|
|
||||||
## Help
|
## Help
|
||||||
For more information about the commands and arguments, use:
|
For more information about the commands and arguments, use:
|
||||||
```bash
|
```bash
|
||||||
|
|
@ -74,12 +57,12 @@ Start the relay server:
|
||||||
|
|
||||||
Open a send window in another terminal:
|
Open a send window in another terminal:
|
||||||
```bash
|
```bash
|
||||||
./target/release/caesar -r ws://0.0.0.0:8000 send
|
./target/release/caesar send
|
||||||
```
|
```
|
||||||
|
|
||||||
Open a receive window in another terminal:
|
Open a receive window in another terminal:
|
||||||
```bash
|
```bash
|
||||||
./target/release/caesar -r ws://0.0.0.0:8000 receive
|
./target/release/caesar receive
|
||||||
```
|
```
|
||||||
|
|
||||||
Now you can test the functionality of the relay server using the cli version.
|
Now you can test the functionality of the relay server.
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ use hex;
|
||||||
use rand::{seq::SliceRandom, thread_rng};
|
use rand::{seq::SliceRandom, thread_rng};
|
||||||
use sha2::{Digest, Sha256};
|
use sha2::{Digest, Sha256};
|
||||||
|
|
||||||
|
|
||||||
/// Generates a random name composed of an adjective, a noun, and another noun.
|
/// Generates a random name composed of an adjective, a noun, and another noun.
|
||||||
///
|
///
|
||||||
/// # Returns
|
/// # Returns
|
||||||
|
|
@ -90,26 +91,6 @@ mod tests {
|
||||||
|
|
||||||
assert!(name.contains('-'));
|
assert!(name.contains('-'));
|
||||||
assert!(name.split('-').count() == 3);
|
assert!(name.split('-').count() == 3);
|
||||||
// assert!(name.is_empty());
|
assert!(name.is_empty());
|
||||||
}
|
|
||||||
#[test]
|
|
||||||
fn test_replace_protocol_replaces_ws_with_http() {
|
|
||||||
let result = replace_protocol("ws://example.com");
|
|
||||||
assert_eq!(result, "http://example.com");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_replace_protocol_replaces_wss_with_https() {
|
|
||||||
let result = replace_protocol("wss://example.com");
|
|
||||||
assert_eq!(result, "https://example.com");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_replace_protocol_does_not_replace_http_or_https() {
|
|
||||||
let result = replace_protocol("http://example.com");
|
|
||||||
assert_eq!(result, "http://example.com");
|
|
||||||
|
|
||||||
let result = replace_protocol("https://example.com");
|
|
||||||
assert_eq!(result, "https://example.com");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,118 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="flutter_test_gui API docs, for the Dart programming language.">
|
|
||||||
<title>flutter_test_gui - Dart API docs</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li class="self-crumb">flutter_test_gui package</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">flutter_test_gui</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div id="dartdoc-main-content" class="main-content">
|
|
||||||
<h1>404: Something's gone wrong :-(</h1>
|
|
||||||
|
|
||||||
<section class="desc">
|
|
||||||
<p>You've tried to visit a page that doesn't exist. Luckily this site
|
|
||||||
has other <a href="index.html">pages</a>.</p>
|
|
||||||
<p>If you were looking for something specific, try searching:
|
|
||||||
<form class="search-body" role="search">
|
|
||||||
<input type="text" id="search-body" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li class="self-crumb">flutter_test_gui package</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="main/main-library.html">main</a></li>
|
|
||||||
<li><a href="pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
[]
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="consts_consts/Constants-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="consts_consts/Constants/Constants.html">Constants</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title inherited">
|
|
||||||
<a href="consts_consts/Constants-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="consts_consts/Constants-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="consts_consts/Constants-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title"><a href="consts_consts/Constants-class.html#constants">Constants</a></li>
|
|
||||||
<li><a href="consts_consts/Constants/backColor-constant.html">backColor</a></li>
|
|
||||||
<li><a href="consts_consts/Constants/highlightColor-constant.html">highlightColor</a></li>
|
|
||||||
<li><a href="consts_consts/Constants/textColor-constant.html">textColor</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,259 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the Constants class from the consts library, for the Dart programming language.">
|
|
||||||
<title>Constants class - consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts.dart</a></li>
|
|
||||||
<li class="self-crumb">Constants class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">Constants</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="consts_consts/consts_consts-library-sidebar.html"
|
|
||||||
data-below-sidebar="consts_consts/Constants-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">Constants</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="Constants" class="callable">
|
|
||||||
<span class="name"><a href="../consts_consts/Constants/Constants.html">Constants</a></span><span class="signature">()</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/toString.html">toString</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constants">
|
|
||||||
<h2>Constants</h2>
|
|
||||||
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="backColor" class="constant">
|
|
||||||
<span class="name "><a href="../consts_consts/Constants/backColor-constant.html">backColor</a></span>
|
|
||||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="highlightColor" class="constant">
|
|
||||||
<span class="name "><a href="../consts_consts/Constants/highlightColor-constant.html">highlightColor</a></span>
|
|
||||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="textColor" class="constant">
|
|
||||||
<span class="name "><a href="../consts_consts/Constants/textColor-constant.html">textColor</a></span>
|
|
||||||
<span class="signature">→ const <a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts</a></li>
|
|
||||||
<li class="self-crumb">Constants class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>consts library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the Constants constructor from Class Constants from the consts library, for the Dart programming language.">
|
|
||||||
<title>Constants constructor - Constants - consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts/consts.dart</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">Constants constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">Constants</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="consts_consts/Constants-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">Constants</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<span class="name ">Constants</span>(<wbr>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">Constants constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>Constants class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the backColor constant from the Constants class, for the Dart programming language.">
|
|
||||||
<title>backColor constant - Constants class - consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts/consts.dart</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">backColor constant</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">backColor</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="consts_consts/Constants-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">backColor</span> constant
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a>
|
|
||||||
const <span class="name ">backColor</span>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">static const backColor = Color(0xFF303446);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">backColor constant</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>Constants class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the highlightColor constant from the Constants class, for the Dart programming language.">
|
|
||||||
<title>highlightColor constant - Constants class - consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts/consts.dart</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">highlightColor constant</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">highlightColor</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="consts_consts/Constants-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">highlightColor</span> constant
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a>
|
|
||||||
const <span class="name ">highlightColor</span>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">static const highlightColor = Color(0xFF8caaee);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">highlightColor constant</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>Constants class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the textColor constant from the Constants class, for the Dart programming language.">
|
|
||||||
<title>textColor constant - Constants class - consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts/consts.dart</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">textColor constant</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">textColor</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="consts_consts/Constants-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">textColor</span> constant
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-ui/Color-class.html">Color</a>
|
|
||||||
const <span class="name ">textColor</span>
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">static const textColor = Color(0xFFc6d0f5);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../consts_consts/consts_consts-library.html">consts</a></li>
|
|
||||||
<li><a href="../../consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
<li class="self-crumb">textColor constant</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>Constants class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="consts_consts/consts_consts-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="consts_consts/Constants-class.html">Constants</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,152 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="consts library API docs, for the Dart programming language.">
|
|
||||||
<title>consts library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">consts/consts.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">consts</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="consts_consts/consts_consts-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">consts/consts</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="Constants">
|
|
||||||
<span class="name "><a href="../consts_consts/Constants-class.html">Constants</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">consts/consts.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>consts library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,185 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="flutter_test_gui API docs, for the Dart programming language.">
|
|
||||||
<title>flutter_test_gui - Dart API docs</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li class="self-crumb">flutter_test_gui package</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">flutter_test_gui</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div id="dartdoc-main-content" class="main-content">
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<h1 id="flutter_test_gui">flutter_test_gui</h1>
|
|
||||||
<p>A new Flutter project.</p>
|
|
||||||
<h2 id="getting-started">Getting Started</h2>
|
|
||||||
<p>This project is a starting point for a Flutter application.</p>
|
|
||||||
<p>A few resources to get you started if this is your first Flutter project:</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://docs.flutter.dev/get-started/codelab">Lab: Write your first Flutter app</a></li>
|
|
||||||
<li><a href="https://docs.flutter.dev/cookbook">Cookbook: Useful Flutter samples</a></li>
|
|
||||||
</ul>
|
|
||||||
<p>For help getting started with Flutter development, view the
|
|
||||||
<a href="https://docs.flutter.dev/">online documentation</a>, which offers tutorials,
|
|
||||||
samples, guidance on mobile development, and a full API reference.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary">
|
|
||||||
<h2>Libraries</h2>
|
|
||||||
<dl>
|
|
||||||
<dt id="consts">
|
|
||||||
<span class="name"><a href="consts_consts/consts_consts-library.html">consts/consts</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="main">
|
|
||||||
<span class="name"><a href="main/main-library.html">main</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="receive_screen">
|
|
||||||
<span class="name"><a href="pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="send_screen">
|
|
||||||
<span class="name"><a href="pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="settings_screen">
|
|
||||||
<span class="name"><a href="pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="succes_screen">
|
|
||||||
<span class="name"><a href="pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="transfer_screen">
|
|
||||||
<span class="name"><a href="pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="waiting_screen">
|
|
||||||
<span class="name"><a href="pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li class="self-crumb">flutter_test_gui package</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="hidden-xs"><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="main/main-library.html">main</a></li>
|
|
||||||
<li><a href="pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,35 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="main/MyApp-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="main/MyApp/MyApp.html">MyApp</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title inherited">
|
|
||||||
<a href="main/MyApp-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="main/MyApp-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="main/MyApp/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="main/MyApp-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,364 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the MyApp class from the main library, for the Dart programming language.">
|
|
||||||
<title>MyApp class - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main.dart</a></li>
|
|
||||||
<li class="self-crumb">MyApp class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">MyApp</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/main-library-sidebar.html"
|
|
||||||
data-below-sidebar="main/MyApp-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">MyApp</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>The root widget of the application.</p>
|
|
||||||
<p>It sets up the material design theme and provides the home page.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>MyApp</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="MyApp" class="callable">
|
|
||||||
<span class="name"><a href="../main/MyApp/MyApp.html">MyApp</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a new instance of <a href="../main/MyApp-class.html">MyApp</a>.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../main/MyApp/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../main/MyApp-class.html">MyApp</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li class="self-crumb">MyApp class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>main library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the MyApp constructor from Class MyApp from the main library, for the Dart programming language.">
|
|
||||||
<title>MyApp constructor - MyApp - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main.dart</a></li>
|
|
||||||
<li><a href="../../main/MyApp-class.html">MyApp</a></li>
|
|
||||||
<li class="self-crumb">MyApp const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">MyApp</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/MyApp-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">MyApp</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">MyApp</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a new instance of <a href="../../main/MyApp-class.html">MyApp</a>.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const MyApp({super.key});</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../../main/MyApp-class.html">MyApp</a></li>
|
|
||||||
<li class="self-crumb">MyApp const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>MyApp class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the MyApp class, for the Dart programming language.">
|
|
||||||
<title>createState method - MyApp class - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main.dart</a></li>
|
|
||||||
<li><a href="../../main/MyApp-class.html">MyApp</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/MyApp-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../main/MyApp-class.html">MyApp</a></span>></span></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>Subclasses should override this method to return a newly created
|
|
||||||
instance of their associated <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> subclass:</p>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<SomeWidget> createState() => _SomeWidgetState();
|
|
||||||
</code></pre>
|
|
||||||
<p>The framework can call this method multiple times over the lifetime of
|
|
||||||
a <code>StatefulWidget</code>. For example, if the widget is inserted into the tree
|
|
||||||
in multiple locations, the framework will create a separate <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
for each location. Similarly, if the widget is removed from the tree and
|
|
||||||
later inserted into the tree again, the framework will call <a href="../../main/MyApp/createState.html">createState</a>
|
|
||||||
again to create a fresh <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object, simplifying the lifecycle of
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> objects.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<MyApp> createState() => _MyAppState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../../main/MyApp-class.html">MyApp</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>MyApp class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="main/MyHomePage-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="main/MyHomePage/MyHomePage.html">MyHomePage</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="main/MyHomePage-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li><a href="main/MyHomePage/title.html">title</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="main/MyHomePage-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="main/MyHomePage/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="main/MyHomePage-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,376 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the MyHomePage class from the main library, for the Dart programming language.">
|
|
||||||
<title>MyHomePage class - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main.dart</a></li>
|
|
||||||
<li class="self-crumb">MyHomePage class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">MyHomePage</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/main-library-sidebar.html"
|
|
||||||
data-below-sidebar="main/MyHomePage-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">MyHomePage</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>The root widget of the application that represents the home page.</p>
|
|
||||||
<p>It sets up the material design theme and provides the home page.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>MyHomePage</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="MyHomePage" class="callable">
|
|
||||||
<span class="name"><a href="../main/MyHomePage/MyHomePage.html">MyHomePage</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span><span class="parameter" id="-param-title"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">title</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a new instance of <a href="../main/MyHomePage-class.html">MyHomePage</a>.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="title" class="property">
|
|
||||||
<span class="name"><a href="../main/MyHomePage/title.html">title</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
The title of the home page.
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../main/MyHomePage/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../main/MyHomePage-class.html">MyHomePage</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li class="self-crumb">MyHomePage class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>main library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,133 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the MyHomePage constructor from Class MyHomePage from the main library, for the Dart programming language.">
|
|
||||||
<title>MyHomePage constructor - MyHomePage - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main.dart</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">MyHomePage const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">MyHomePage</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/MyHomePage-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">MyHomePage</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">MyHomePage</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span></li>
|
|
||||||
<li><span class="parameter" id="-param-title"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">title</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a new instance of <a href="../../main/MyHomePage-class.html">MyHomePage</a>.</p>
|
|
||||||
<p>The <a href="../../main/MyHomePage/title.html">title</a> argument is the title of the home page.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const MyHomePage({
|
|
||||||
super.key,
|
|
||||||
required this.title,
|
|
||||||
});</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">MyHomePage const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>MyHomePage class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the MyHomePage class, for the Dart programming language.">
|
|
||||||
<title>createState method - MyHomePage class - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main.dart</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/MyHomePage-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../../main/MyHomePage-class.html">MyHomePage</a></span>></span></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>Subclasses should override this method to return a newly created
|
|
||||||
instance of their associated <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> subclass:</p>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<SomeWidget> createState() => _SomeWidgetState();
|
|
||||||
</code></pre>
|
|
||||||
<p>The framework can call this method multiple times over the lifetime of
|
|
||||||
a <code>StatefulWidget</code>. For example, if the widget is inserted into the tree
|
|
||||||
in multiple locations, the framework will create a separate <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
for each location. Similarly, if the widget is removed from the tree and
|
|
||||||
later inserted into the tree again, the framework will call <a href="../../main/MyHomePage/createState.html">createState</a>
|
|
||||||
again to create a fresh <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object, simplifying the lifecycle of
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> objects.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<MyHomePage> createState() => _MyHomePageState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>MyHomePage class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the title property from the MyHomePage class, for the Dart programming language.">
|
|
||||||
<title>title property - MyHomePage class - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main.dart</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">title property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">title</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/MyHomePage-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">title</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">title</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>The title of the home page.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final String title;</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../../main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
<li class="self-crumb">title property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>MyHomePage class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="main/main-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="main/MyApp-class.html">MyApp</a></li>
|
|
||||||
<li><a href="main/MyHomePage-class.html">MyHomePage</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title"><a href="main/main-library.html#functions">Functions</a></li>
|
|
||||||
<li><a href="main/main.html">main</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,179 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="main library API docs, for the Dart programming language.">
|
|
||||||
<title>main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">main.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">main</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="main/main-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">main</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="MyApp">
|
|
||||||
<span class="name "><a href="../main/MyApp-class.html">MyApp</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
The root widget of the application.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="MyHomePage">
|
|
||||||
<span class="name "><a href="../main/MyHomePage-class.html">MyHomePage</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
The root widget of the application that represents the home page.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="functions">
|
|
||||||
<h2>Functions</h2>
|
|
||||||
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="main" class="callable">
|
|
||||||
<span class="name"><a href="../main/main.html">main</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Main entrypoint of the application.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">main.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>main library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,166 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the main function from the main library, for the Dart programming language.">
|
|
||||||
<title>main function - main library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main.dart</a></li>
|
|
||||||
<li class="self-crumb">main function</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">main</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="main/main-library-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-function">main</span> function
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">main</span>(<wbr>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Main entrypoint of the application.</p>
|
|
||||||
<p>This function is called when the application starts. It initializes the
|
|
||||||
Rust library, sets up the application widget, and shows the window.</p>
|
|
||||||
<p>The function first calls the <code>RustLib.init</code> function to initialize the
|
|
||||||
Rust library. Then, it runs the application using the <a href="https://api.flutter.dev/flutter/widgets/runApp.html">runApp</a> function
|
|
||||||
with the <a href="../main/MyApp-class.html">MyApp</a> widget. If the application is running on Windows, Linux,
|
|
||||||
or macOS, it sets up the window properties such as the minimum size,
|
|
||||||
initial size, alignment, and title. Finally, it shows the window.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> main() async {
|
|
||||||
// Initialize the Rust library
|
|
||||||
await RustLib.init();
|
|
||||||
|
|
||||||
// Set up the application widget
|
|
||||||
runApp(const MyApp());
|
|
||||||
|
|
||||||
// Set up the window properties if running on Windows, Linux, or macOS
|
|
||||||
if (Platform.isWindows || Platform.isLinux || Platform.isMacOS) {
|
|
||||||
doWhenWindowReady(() {
|
|
||||||
final win = appWindow;
|
|
||||||
|
|
||||||
// Set the minimum size of the window
|
|
||||||
const initialSize = Size(720, 512);
|
|
||||||
win.minSize = initialSize;
|
|
||||||
|
|
||||||
// Set the initial size of the window
|
|
||||||
win.size = initialSize;
|
|
||||||
|
|
||||||
// Set the alignment of the window
|
|
||||||
win.alignment = Alignment.center;
|
|
||||||
|
|
||||||
// Set the title of the window
|
|
||||||
win.title = 'Caesar Test Demo';
|
|
||||||
|
|
||||||
// Show the window
|
|
||||||
win.show();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li class="self-crumb">main function</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>main library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_receive_screen/ReceiveScreen-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreen/ReceiveScreen.html">ReceiveScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title inherited">
|
|
||||||
<a href="pages_receive_screen/ReceiveScreen-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_receive_screen/ReceiveScreen-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreen/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_receive_screen/ReceiveScreen-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,366 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the ReceiveScreen class from the receive_screen library, for the Dart programming language.">
|
|
||||||
<title>ReceiveScreen class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreen class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">ReceiveScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/pages_receive_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_receive_screen/ReceiveScreen-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">ReceiveScreen</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Screen for receiving files.</p>
|
|
||||||
<p>This screen is used to accept incoming file transfers. It displays a QR
|
|
||||||
code scanner on supported platforms and allows the user to enter a
|
|
||||||
connection link manually.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>ReceiveScreen</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="ReceiveScreen" class="callable">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreen/ReceiveScreen.html">ReceiveScreen</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a new instance of the receive screen.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreen/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreen class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>receive_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the ReceiveScreen constructor from Class ReceiveScreen from the receive_screen library, for the Dart programming language.">
|
|
||||||
<title>ReceiveScreen constructor - ReceiveScreen - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">ReceiveScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">ReceiveScreen</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">ReceiveScreen</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a new instance of the receive screen.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const ReceiveScreen({super.key});</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the ReceiveScreen class, for the Dart programming language.">
|
|
||||||
<title>createState method - ReceiveScreen class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>Subclasses should override this method to return a newly created
|
|
||||||
instance of their associated <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> subclass:</p>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<SomeWidget> createState() => _SomeWidgetState();
|
|
||||||
</code></pre>
|
|
||||||
<p>The framework can call this method multiple times over the lifetime of
|
|
||||||
a <code>StatefulWidget</code>. For example, if the widget is inserted into the tree
|
|
||||||
in multiple locations, the framework will create a separate <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
for each location. Similarly, if the widget is removed from the tree and
|
|
||||||
later inserted into the tree again, the framework will call <a href="../../pages_receive_screen/ReceiveScreen/createState.html">createState</a>
|
|
||||||
again to create a fresh <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object, simplifying the lifecycle of
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> objects.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
ReceiveScreenState createState() => ReceiveScreenState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_receive_screen/ReceiveScreenState-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/ReceiveScreenState.html">ReceiveScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_receive_screen/ReceiveScreenState-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/appOrigin.html">appOrigin</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/inputValue.html">inputValue</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/myController.html">myController</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_receive_screen/ReceiveScreenState-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/build.html">build</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/initState.html">initState</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState/loadSettings.html">loadSettings</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_receive_screen/ReceiveScreenState-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,487 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the ReceiveScreenState class from the receive_screen library, for the Dart programming language.">
|
|
||||||
<title>ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">ReceiveScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/pages_receive_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">ReceiveScreenState</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>State for the receive screen.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></span>></span></li>
|
|
||||||
<li>ReceiveScreenState</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="ReceiveScreenState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/ReceiveScreenState.html">ReceiveScreenState</a></span><span class="signature">()</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="appOrigin" class="property">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/appOrigin.html">appOrigin</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
The URL of the app that initiated the transfer.
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="context" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The location in the tree where this widget builds.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="inputValue" class="property">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/inputValue.html">inputValue</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
The current input value of the connection link input.
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="mounted" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Whether this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object is currently in a tree.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="myController" class="property">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/myController.html">myController</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/widgets/TextEditingController-class.html">TextEditingController</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Text editing controller for the connection link input.
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="widget" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></span>
|
|
||||||
<span class="signature">→ <a href="../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The current configuration.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="activate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is reinserted into the tree after having been
|
|
||||||
removed via <a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="build" class="callable">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/build.html">build</a></span><span class="signature">(<wbr><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Builds the scaffold for the receive screen.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="deactivate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didChangeDependencies" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when a dependency of this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didUpdateWidget" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></span><span class="signature">(<wbr><span class="parameter" id="didUpdateWidget-param-oldWidget"><span>covariant</span> <span class="type-annotation"><a href="../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></span> <span class="parameter-name">oldWidget</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the widget configuration changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="dispose" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree permanently.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="initState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/initState.html">initState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is inserted into the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="loadSettings" class="callable">
|
|
||||||
<span class="name"><a href="../pages_receive_screen/ReceiveScreenState/loadSettings.html">loadSettings</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Loads the app origin from the shared preferences.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="reassemble" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the application is reassembled during debugging, for
|
|
||||||
example during hot reload.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="setState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></span><span class="signature">(<wbr><span class="parameter" id="setState-param-fn"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-ui/VoidCallback.html">VoidCallback</a></span> <span class="parameter-name">fn</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Notify the framework that the internal state of this object has changed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A brief description of this object, usually just the <a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a> and the
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>receive_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the ReceiveScreenState constructor from Class ReceiveScreenState from the receive_screen library, for the Dart programming language.">
|
|
||||||
<title>ReceiveScreenState constructor - ReceiveScreenState - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">ReceiveScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">ReceiveScreenState</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<span class="name ">ReceiveScreenState</span>(<wbr>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">ReceiveScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the appOrigin property from the ReceiveScreenState class, for the Dart programming language.">
|
|
||||||
<title>appOrigin property - ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">appOrigin</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">appOrigin</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">appOrigin</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>The URL of the app that initiated the transfer.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String appOrigin = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,239 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the build method from the ReceiveScreenState class, for the Dart programming language.">
|
|
||||||
<title>build method - ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">build</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">build</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
<span class="name ">build</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Builds the scaffold for the receive screen.</p>
|
|
||||||
<p>The scaffold contains a center widget that contains a column of widgets.
|
|
||||||
The column contains a QR code scanner if <code>_showScanner</code> is true, otherwise
|
|
||||||
it contains a text field for entering the transfer name. Below the text
|
|
||||||
field is an elevated button for initiating the receive process.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Scaffold(
|
|
||||||
backgroundColor: Constants.backColor,
|
|
||||||
body: Center(
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
// If _showScanner is false, display a QR code icon that can be tapped
|
|
||||||
// to start the QR code scanner.
|
|
||||||
if (!_showScanner)
|
|
||||||
GestureDetector(
|
|
||||||
onTap: () {
|
|
||||||
if (Platform.isIOS || Platform.isAndroid) {
|
|
||||||
setState(() {
|
|
||||||
_showScanner = true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
child: Container(
|
|
||||||
width: 200,
|
|
||||||
height: 200,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
shape: BoxShape.circle,
|
|
||||||
color: Constants.textColor,
|
|
||||||
),
|
|
||||||
child: const Center(
|
|
||||||
child: Icon(
|
|
||||||
Icons.qr_code,
|
|
||||||
color: Constants.highlightColor,
|
|
||||||
size: 100,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// If _showScanner is true, display the QR code scanner.
|
|
||||||
if (_showScanner)
|
|
||||||
Container(
|
|
||||||
width: MediaQuery.of(context).size.width * 0.8,
|
|
||||||
height: MediaQuery.of(context).size.height * 0.5,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
borderRadius: BorderRadius.circular(16),
|
|
||||||
),
|
|
||||||
child: _buildQRScanner(),
|
|
||||||
),
|
|
||||||
// Add some spacing between the scanner and the text field.
|
|
||||||
const SizedBox(height: 32),
|
|
||||||
// Display a text field for entering the transfer name.
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
||||||
child: SizedBox(
|
|
||||||
width: MediaQuery.of(context).size.width * 0.5,
|
|
||||||
child: TextField(
|
|
||||||
controller: myController,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
style: const TextStyle(
|
|
||||||
color: Constants.highlightColor,
|
|
||||||
),
|
|
||||||
onChanged: (value) {
|
|
||||||
setState(() {
|
|
||||||
inputValue = value;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
decoration: const InputDecoration(
|
|
||||||
labelText: 'Enter Transfername',
|
|
||||||
alignLabelWithHint: true,
|
|
||||||
floatingLabelAlignment: FloatingLabelAlignment.center,
|
|
||||||
labelStyle: TextStyle(color: Constants.textColor),
|
|
||||||
enabledBorder: UnderlineInputBorder(
|
|
||||||
borderSide: BorderSide(color: Constants.textColor),
|
|
||||||
),
|
|
||||||
focusedBorder: UnderlineInputBorder(
|
|
||||||
borderSide: BorderSide(color: Constants.textColor),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// Add some spacing between the text field and the receive button.
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
// Display an elevated button for initiating the receive process.
|
|
||||||
ElevatedButton(
|
|
||||||
style: ElevatedButton.styleFrom(
|
|
||||||
backgroundColor: Constants.textColor,
|
|
||||||
foregroundColor: Constants.backColor,
|
|
||||||
shape: RoundedRectangleBorder(
|
|
||||||
borderRadius: BorderRadius.circular(20),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onPressed: () {
|
|
||||||
loadSettings().then((_) => _startTransfer(appOrigin));
|
|
||||||
},
|
|
||||||
child: const Text('Receive'),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)),
|
|
||||||
);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the inputValue property from the ReceiveScreenState class, for the Dart programming language.">
|
|
||||||
<title>inputValue property - ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">inputValue property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">inputValue</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">inputValue</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">inputValue</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>The current input value of the connection link input.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String inputValue = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">inputValue property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,138 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the loadSettings method from the ReceiveScreenState class, for the Dart programming language.">
|
|
||||||
<title>loadSettings method - ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">loadSettings</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">loadSettings</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">loadSettings</span>(<wbr>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Loads the app origin from the shared preferences.</p>
|
|
||||||
<p>If the app origin is not present in the shared preferences, it sets the
|
|
||||||
default value to 'wss://caesar-transfer-iu.shuttleapp.rs'.</p>
|
|
||||||
<p>Returns a <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a> that completes with no value.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> loadSettings() async {
|
|
||||||
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
||||||
appOrigin = prefs.getString('app_origin') ??
|
|
||||||
'wss://caesar-transfer-iu.shuttleapp.rs'; // Load the app origin
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the myController property from the ReceiveScreenState class, for the Dart programming language.">
|
|
||||||
<title>myController property - ReceiveScreenState class - receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">myController property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">myController</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_receive_screen/ReceiveScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">myController</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/TextEditingController-class.html">TextEditingController</a>
|
|
||||||
<span class="name ">myController</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Text editing controller for the connection link input.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final myController = TextEditingController();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/pages_receive_screen-library.html">receive_screen</a></li>
|
|
||||||
<li><a href="../../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
<li class="self-crumb">myController property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>ReceiveScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="pages_receive_screen/pages_receive_screen-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></li>
|
|
||||||
<li><a href="pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,160 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="receive_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>receive_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/receive_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">receive_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_receive_screen/pages_receive_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/receive_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="ReceiveScreen">
|
|
||||||
<span class="name "><a href="../pages_receive_screen/ReceiveScreen-class.html">ReceiveScreen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Screen for receiving files.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="ReceiveScreenState">
|
|
||||||
<span class="name "><a href="../pages_receive_screen/ReceiveScreenState-class.html">ReceiveScreenState</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
State for the receive screen.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/receive_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>receive_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_send_screen/SendScreen-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreen/SendScreen.html">SendScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title inherited">
|
|
||||||
<a href="pages_send_screen/SendScreen-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_send_screen/SendScreen-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreen/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_send_screen/SendScreen-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,370 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SendScreen class from the send_screen library, for the Dart programming language.">
|
|
||||||
<title>SendScreen class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">SendScreen class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SendScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/pages_send_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_send_screen/SendScreen-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">SendScreen</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Represents the screen for sending files.</p>
|
|
||||||
<p>This is a <a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a> that displays a screen for sending files.
|
|
||||||
It allows the user to select files to send and provides a name for the transfer.
|
|
||||||
The selected files are stored in a list and can be accessed by the <a href="../pages_send_screen/SendScreenState-class.html">SendScreenState</a>.</p>
|
|
||||||
<p>See also:</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>SendScreen</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="SendScreen" class="callable">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreen/SendScreen.html">SendScreen</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a <a href="../pages_send_screen/SendScreen-class.html">SendScreen</a>.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreen/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="../pages_send_screen/SendScreenState-class.html">SendScreenState</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a <a href="../pages_send_screen/SendScreenState-class.html">SendScreenState</a> to control the <a href="../pages_send_screen/SendScreen-class.html">SendScreen</a>.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li class="self-crumb">SendScreen class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>send_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SendScreen constructor from Class SendScreen from the send_screen library, for the Dart programming language.">
|
|
||||||
<title>SendScreen constructor - SendScreen - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a></li>
|
|
||||||
<li class="self-crumb">SendScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SendScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">SendScreen</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">SendScreen</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a <a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a>.</p>
|
|
||||||
<p>The <a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a> parameter is used to identify the <a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a> widget.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const SendScreen({super.key});</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a></li>
|
|
||||||
<li class="self-crumb">SendScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,139 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the SendScreen class, for the Dart programming language.">
|
|
||||||
<title>createState method - SendScreen class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a <a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a> to control the <a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a>.</p>
|
|
||||||
<p>This method is called when a <a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a> widget is created.
|
|
||||||
It returns a new instance of <a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a>.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
SendScreenState createState() => SendScreenState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreen-class.html">SendScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_send_screen/SendScreenState-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreenState/SendScreenState.html">SendScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_send_screen/SendScreenState-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreenState/transferName.html">transferName</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_send_screen/SendScreenState-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreenState/build.html">build</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/initState.html">initState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreenState/openFilePicker.html">openFilePicker</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_send_screen/SendScreenState-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,460 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SendScreenState class from the send_screen library, for the Dart programming language.">
|
|
||||||
<title>SendScreenState class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">SendScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SendScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/pages_send_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_send_screen/SendScreenState-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">SendScreenState</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../pages_send_screen/SendScreen-class.html">SendScreen</a></span>></span></li>
|
|
||||||
<li>SendScreenState</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="SendScreenState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreenState/SendScreenState.html">SendScreenState</a></span><span class="signature">()</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="context" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The location in the tree where this widget builds.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="mounted" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Whether this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object is currently in a tree.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="transferName" class="property">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreenState/transferName.html">transferName</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Name of the transfer.
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="widget" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></span>
|
|
||||||
<span class="signature">→ <a href="../pages_send_screen/SendScreen-class.html">SendScreen</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The current configuration.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="activate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is reinserted into the tree after having been
|
|
||||||
removed via <a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="build" class="callable">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreenState/build.html">build</a></span><span class="signature">(<wbr><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Builds the UI for the send screen.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="deactivate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didChangeDependencies" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when a dependency of this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didUpdateWidget" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></span><span class="signature">(<wbr><span class="parameter" id="didUpdateWidget-param-oldWidget"><span>covariant</span> <span class="type-annotation"><a href="../pages_send_screen/SendScreen-class.html">SendScreen</a></span> <span class="parameter-name">oldWidget</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the widget configuration changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="dispose" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree permanently.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="initState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/initState.html">initState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is inserted into the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="openFilePicker" class="callable">
|
|
||||||
<span class="name"><a href="../pages_send_screen/SendScreenState/openFilePicker.html">openFilePicker</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Opens the file picker and adds the selected files to <code>_list</code>.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="reassemble" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the application is reassembled during debugging, for
|
|
||||||
example during hot reload.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="setState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></span><span class="signature">(<wbr><span class="parameter" id="setState-param-fn"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-ui/VoidCallback.html">VoidCallback</a></span> <span class="parameter-name">fn</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Notify the framework that the internal state of this object has changed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A brief description of this object, usually just the <a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a> and the
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li class="self-crumb">SendScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>send_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SendScreenState constructor from Class SendScreenState from the send_screen library, for the Dart programming language.">
|
|
||||||
<title>SendScreenState constructor - SendScreenState - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">SendScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SendScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">SendScreenState</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<span class="name ">SendScreenState</span>(<wbr>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">SendScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,240 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the build method from the SendScreenState class, for the Dart programming language.">
|
|
||||||
<title>build method - SendScreenState class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">build</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">build</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
<span class="name ">build</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Builds the UI for the send screen.</p>
|
|
||||||
<p>Returns a <a href="https://api.flutter.dev/flutter/material/Scaffold-class.html">Scaffold</a> widget that contains a <a href="https://api.flutter.dev/flutter/widgets/Column-class.html">Column</a> with two children:</p>
|
|
||||||
<ul>
|
|
||||||
<li>A <a href="https://api.flutter.dev/flutter/widgets/Center-class.html">Center</a> widget that contains a <a href="https://api.flutter.dev/flutter/widgets/Stack-class.html">Stack</a> with a <a href="https://api.flutter.dev/flutter/widgets/GestureDetector-class.html">GestureDetector</a> that
|
|
||||||
handles file picking and dragging.</li>
|
|
||||||
<li>An <a href="https://api.flutter.dev/flutter/material/ElevatedButton-class.html">ElevatedButton</a> that triggers the transfer when pressed.</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Scaffold(
|
|
||||||
// Set the background color of the scaffold.
|
|
||||||
backgroundColor: Constants.backColor,
|
|
||||||
// Build the body of the scaffold.
|
|
||||||
body: Column(
|
|
||||||
// Align the children vertically to the center.
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
// Build the file picking and dragging UI.
|
|
||||||
Center(
|
|
||||||
child: Stack(
|
|
||||||
children: [
|
|
||||||
// Build the gesture detector.
|
|
||||||
GestureDetector(
|
|
||||||
// Handle file picking when the user taps.
|
|
||||||
onTap: openFilePicker,
|
|
||||||
// Handle file dragging.
|
|
||||||
child: DropTarget(
|
|
||||||
// Add the selected files to the list when the user drops files.
|
|
||||||
onDragDone: (detail) {
|
|
||||||
setState(() {
|
|
||||||
_list.addAll(detail.files);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// Show the add icon when the user drags files over the drop area.
|
|
||||||
onDragEntered: (detail) {
|
|
||||||
setState(() {
|
|
||||||
_dragging = true;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// Hide the add icon when the user stops dragging files.
|
|
||||||
onDragExited: (detail) {
|
|
||||||
setState(() {
|
|
||||||
_dragging = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// Build the drop area UI.
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
// Build the circular container for the drop area.
|
|
||||||
Container(
|
|
||||||
height: 200,
|
|
||||||
width: 200,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
shape: BoxShape.circle,
|
|
||||||
color: Constants.textColor),
|
|
||||||
// Show the add icon when the user is dragging files.
|
|
||||||
child: _dragging
|
|
||||||
? const Center(
|
|
||||||
child: Icon(
|
|
||||||
Icons.add_rounded,
|
|
||||||
color: Constants.highlightColor,
|
|
||||||
size: 200,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
// Show the upload icon when the user is not dragging files.
|
|
||||||
: const Center(
|
|
||||||
child: Icon(
|
|
||||||
Icons.upload_rounded,
|
|
||||||
color: Constants.highlightColor,
|
|
||||||
size: 200,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// Add some spacing between the drop area and the send button.
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// Build the send button.
|
|
||||||
ElevatedButton(
|
|
||||||
style: ElevatedButton.styleFrom(
|
|
||||||
// Set the background color of the button.
|
|
||||||
backgroundColor: Constants.textColor,
|
|
||||||
// Set the text color of the button.
|
|
||||||
foregroundColor: Constants.backColor,
|
|
||||||
// Set the shape of the button.
|
|
||||||
shape: RoundedRectangleBorder(
|
|
||||||
borderRadius: BorderRadius.circular(20),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// Trigger the transfer when the user presses the button.
|
|
||||||
onPressed: () {
|
|
||||||
_startTransfer();
|
|
||||||
},
|
|
||||||
// Set the text of the button.
|
|
||||||
child: const Text("Send"),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,143 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the openFilePicker method from the SendScreenState class, for the Dart programming language.">
|
|
||||||
<title>openFilePicker method - SendScreenState class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">openFilePicker method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">openFilePicker</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">openFilePicker</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">openFilePicker</span>(<wbr>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Opens the file picker and adds the selected files to <code>_list</code>.</p>
|
|
||||||
<p>See also:</p>
|
|
||||||
<ul>
|
|
||||||
<li><code>FilePicker.platform.pickFiles</code></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> openFilePicker() async {
|
|
||||||
FilePickerResult? result = await FilePicker.platform.pickFiles(
|
|
||||||
allowMultiple: true, // Allow selecting multiple files
|
|
||||||
);
|
|
||||||
|
|
||||||
if (result != null) {
|
|
||||||
_list.addAll(result.xFiles);
|
|
||||||
}
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">openFilePicker method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the transferName property from the SendScreenState class, for the Dart programming language.">
|
|
||||||
<title>transferName property - SendScreenState class - send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">pages/send_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">transferName</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_send_screen/SendScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">transferName</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">transferName</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Name of the transfer.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String transferName = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/pages_send_screen-library.html">send_screen</a></li>
|
|
||||||
<li><a href="../../pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SendScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="pages_send_screen/pages_send_screen-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreen-class.html">SendScreen</a></li>
|
|
||||||
<li><a href="pages_send_screen/SendScreenState-class.html">SendScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,160 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="send_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>send_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/send_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">send_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_send_screen/pages_send_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/send_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="SendScreen">
|
|
||||||
<span class="name "><a href="../pages_send_screen/SendScreen-class.html">SendScreen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Represents the screen for sending files.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="SendScreenState">
|
|
||||||
<span class="name "><a href="../pages_send_screen/SendScreenState-class.html">SendScreenState</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/send_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>send_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_settings_screen/SettingsScreen-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_settings_screen/SettingsScreen/SettingsScreen.html">SettingsScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title inherited">
|
|
||||||
<a href="pages_settings_screen/SettingsScreen-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_settings_screen/SettingsScreen-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="pages_settings_screen/SettingsScreen/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_settings_screen/SettingsScreen-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,366 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SettingsScreen class from the settings_screen library, for the Dart programming language.">
|
|
||||||
<title>SettingsScreen class - settings_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">SettingsScreen class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SettingsScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_settings_screen/pages_settings_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_settings_screen/SettingsScreen-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">SettingsScreen</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Screen for displaying and editing the app's settings.</p>
|
|
||||||
<p>This screen allows the user to view and edit the app's settings.
|
|
||||||
The settings include the app environment, host, port, origin, and relay.
|
|
||||||
The settings are stored in SharedPreferences.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>SettingsScreen</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="SettingsScreen" class="callable">
|
|
||||||
<span class="name"><a href="../pages_settings_screen/SettingsScreen/SettingsScreen.html">SettingsScreen</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Constructs a <a href="../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a>.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_settings_screen/SettingsScreen/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ _SettingsScreenState</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">settings_screen</a></li>
|
|
||||||
<li class="self-crumb">SettingsScreen class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>settings_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,128 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the SettingsScreen constructor from Class SettingsScreen from the settings_screen library, for the Dart programming language.">
|
|
||||||
<title>SettingsScreen constructor - SettingsScreen - settings_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></li>
|
|
||||||
<li class="self-crumb">SettingsScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">SettingsScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_settings_screen/SettingsScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">SettingsScreen</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">SettingsScreen</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Constructs a <a href="../../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a>.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const SettingsScreen({Key? key}) : super(key: key);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/pages_settings_screen-library.html">settings_screen</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></li>
|
|
||||||
<li class="self-crumb">SettingsScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SettingsScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the SettingsScreen class, for the Dart programming language.">
|
|
||||||
<title>createState method - SettingsScreen class - settings_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_settings_screen/SettingsScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype">_SettingsScreenState</span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>Subclasses should override this method to return a newly created
|
|
||||||
instance of their associated <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> subclass:</p>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<SomeWidget> createState() => _SomeWidgetState();
|
|
||||||
</code></pre>
|
|
||||||
<p>The framework can call this method multiple times over the lifetime of
|
|
||||||
a <code>StatefulWidget</code>. For example, if the widget is inserted into the tree
|
|
||||||
in multiple locations, the framework will create a separate <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
for each location. Similarly, if the widget is removed from the tree and
|
|
||||||
later inserted into the tree again, the framework will call <a href="../../pages_settings_screen/SettingsScreen/createState.html">createState</a>
|
|
||||||
again to create a fresh <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object, simplifying the lifecycle of
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> objects.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
_SettingsScreenState createState() => _SettingsScreenState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/pages_settings_screen-library.html">settings_screen</a></li>
|
|
||||||
<li><a href="../../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>SettingsScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="pages_settings_screen/pages_settings_screen-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,152 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="settings_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>settings_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/settings_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">settings_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_settings_screen/pages_settings_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/settings_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="SettingsScreen">
|
|
||||||
<span class="name "><a href="../pages_settings_screen/SettingsScreen-class.html">SettingsScreen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Screen for displaying and editing the app's settings.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/settings_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>settings_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,138 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="succes_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>succes_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/succes_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">succes_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_succes_screen/pages_succes_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/succes_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/succes_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>succes_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_transfer_screen/TransferScreen-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreen/TransferScreen.html">TransferScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_transfer_screen/TransferScreen-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreen/directory.html">directory</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreen/transferName.html">transferName</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_transfer_screen/TransferScreen-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreen/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_transfer_screen/TransferScreen-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,393 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the TransferScreen class from the transfer_screen library, for the Dart programming language.">
|
|
||||||
<title>TransferScreen class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">TransferScreen class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">TransferScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/pages_transfer_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_transfer_screen/TransferScreen-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">TransferScreen</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Represents the screen for transferring files.</p>
|
|
||||||
<p>This is a <a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a> that displays a screen for transferring files.
|
|
||||||
It takes in two parameters:</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="../pages_transfer_screen/TransferScreen/transferName.html">transferName</a>: The name of the transfer.</li>
|
|
||||||
<li><a href="../pages_transfer_screen/TransferScreen/directory.html">directory</a>: The directory containing the files to be transferred.</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>TransferScreen</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="TransferScreen" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreen/TransferScreen.html">TransferScreen</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span><span class="parameter" id="-param-transferName"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">transferName</span>, </span><span class="parameter" id="-param-directory"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">directory</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a <a href="../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a> widget.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="directory" class="property">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreen/directory.html">directory</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="transferName" class="property">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreen/transferName.html">transferName</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreen/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li class="self-crumb">TransferScreen class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>transfer_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,134 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the TransferScreen constructor from Class TransferScreen from the transfer_screen library, for the Dart programming language.">
|
|
||||||
<title>TransferScreen constructor - TransferScreen - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">TransferScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">TransferScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">TransferScreen</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">TransferScreen</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span></li>
|
|
||||||
<li><span class="parameter" id="-param-transferName"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">transferName</span>, </span></li>
|
|
||||||
<li><span class="parameter" id="-param-directory"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">directory</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a <a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a> widget.</p>
|
|
||||||
<p>The <a href="../../pages_transfer_screen/TransferScreen/transferName.html">transferName</a> and <a href="../../pages_transfer_screen/TransferScreen/directory.html">directory</a> parameters are required.</p>
|
|
||||||
<p>The <code>key</code> parameter is optional.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const TransferScreen(
|
|
||||||
{Key? key, required this.transferName, required this.directory})
|
|
||||||
: super(key: key);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">TransferScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,149 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the TransferScreen class, for the Dart programming language.">
|
|
||||||
<title>createState method - TransferScreen class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>Subclasses should override this method to return a newly created
|
|
||||||
instance of their associated <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> subclass:</p>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
State<SomeWidget> createState() => _SomeWidgetState();
|
|
||||||
</code></pre>
|
|
||||||
<p>The framework can call this method multiple times over the lifetime of
|
|
||||||
a <code>StatefulWidget</code>. For example, if the widget is inserted into the tree
|
|
||||||
in multiple locations, the framework will create a separate <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
for each location. Similarly, if the widget is removed from the tree and
|
|
||||||
later inserted into the tree again, the framework will call <a href="../../pages_transfer_screen/TransferScreen/createState.html">createState</a>
|
|
||||||
again to create a fresh <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object, simplifying the lifecycle of
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> objects.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
TransferScreenState createState() => TransferScreenState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the directory property from the TransferScreen class, for the Dart programming language.">
|
|
||||||
<title>directory property - TransferScreen class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">directory property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">directory</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">directory</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">directory</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final String directory;</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">directory property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the transferName property from the TransferScreen class, for the Dart programming language.">
|
|
||||||
<title>transferName property - TransferScreen class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">transferName</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">transferName</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">transferName</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final String transferName;</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_transfer_screen/TransferScreenState-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/TransferScreenState.html">TransferScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_transfer_screen/TransferScreenState-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/appOrigin.html">appOrigin</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/inputValue.html">inputValue</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_transfer_screen/TransferScreenState-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/build.html">build</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/callStartReceiver.html">callStartReceiver</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/initState.html">initState</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState/loadSettings.html">loadSettings</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_transfer_screen/TransferScreenState-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,485 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the TransferScreenState class from the transfer_screen library, for the Dart programming language.">
|
|
||||||
<title>TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">TransferScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">TransferScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/pages_transfer_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">TransferScreenState</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></span>></span></li>
|
|
||||||
<li>TransferScreenState</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="TransferScreenState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/TransferScreenState.html">TransferScreenState</a></span><span class="signature">()</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="appOrigin" class="property">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/appOrigin.html">appOrigin</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="context" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The location in the tree where this widget builds.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="inputValue" class="property">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/inputValue.html">inputValue</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="mounted" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Whether this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object is currently in a tree.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="widget" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></span>
|
|
||||||
<span class="signature">→ <a href="../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The current configuration.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="activate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is reinserted into the tree after having been
|
|
||||||
removed via <a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="build" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/build.html">build</a></span><span class="signature">(<wbr><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Builds the widget tree for the TransferScreen.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="callStartReceiver" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/callStartReceiver.html">callStartReceiver</a></span><span class="signature">(<wbr><span class="parameter" id="callStartReceiver-param-appOrigin"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">appOrigin</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Calls the start transfer function with the given <code>appOrigin</code>.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="deactivate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didChangeDependencies" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when a dependency of this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didUpdateWidget" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></span><span class="signature">(<wbr><span class="parameter" id="didUpdateWidget-param-oldWidget"><span>covariant</span> <span class="type-annotation"><a href="../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></span> <span class="parameter-name">oldWidget</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the widget configuration changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="dispose" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree permanently.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="initState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/initState.html">initState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Called when this object is inserted into the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="loadSettings" class="callable">
|
|
||||||
<span class="name"><a href="../pages_transfer_screen/TransferScreenState/loadSettings.html">loadSettings</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Loads the settings from the SharedPreferences.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="reassemble" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the application is reassembled during debugging, for
|
|
||||||
example during hot reload.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="setState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></span><span class="signature">(<wbr><span class="parameter" id="setState-param-fn"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-ui/VoidCallback.html">VoidCallback</a></span> <span class="parameter-name">fn</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Notify the framework that the internal state of this object has changed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A brief description of this object, usually just the <a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a> and the
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li class="self-crumb">TransferScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>transfer_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the TransferScreenState constructor from Class TransferScreenState from the transfer_screen library, for the Dart programming language.">
|
|
||||||
<title>TransferScreenState constructor - TransferScreenState - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">TransferScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">TransferScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">TransferScreenState</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<span class="name ">TransferScreenState</span>(<wbr>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">TransferScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the appOrigin property from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>appOrigin property - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">appOrigin</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">appOrigin</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">appOrigin</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String appOrigin = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,199 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the build method from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>build method - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">build</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">build</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
<span class="name ">build</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Builds the widget tree for the TransferScreen.</p>
|
|
||||||
<p>This method builds a widget tree for the TransferScreen. It returns a
|
|
||||||
Scaffold widget with a background color set to Constants.backColor. The
|
|
||||||
body of the scaffold is a Center widget that contains a Column widget.
|
|
||||||
The Column widget has its mainAxisAlignment set to MainAxisAlignment.center.
|
|
||||||
It contains three children: a Text widget displaying the transferName, a
|
|
||||||
Text widget with the text "Transfer in Progress", and a SizedBox widget
|
|
||||||
with a height of 32. The SizedBox widget is followed by a Center widget
|
|
||||||
that contains an Icon widget with the icon Icons.cloud_download_rounded,
|
|
||||||
its color set to Constants.highlightColor, and its size set to 200.</p>
|
|
||||||
<p>Returns:
|
|
||||||
The widget tree for the TransferScreen.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
|
|
||||||
/// Builds the widget tree for the TransferScreen.
|
|
||||||
///
|
|
||||||
/// This method builds a widget tree for the TransferScreen. It returns a
|
|
||||||
/// Scaffold widget with a background color set to Constants.backColor. The
|
|
||||||
/// body of the scaffold is a Center widget that contains a Column widget.
|
|
||||||
/// The Column widget has its mainAxisAlignment set to MainAxisAlignment.center.
|
|
||||||
/// It contains three children: a Text widget displaying the transferName, a
|
|
||||||
/// Text widget with the text "Transfer in Progress", and a SizedBox widget
|
|
||||||
/// with a height of 32. The SizedBox widget is followed by a Center widget
|
|
||||||
/// that contains an Icon widget with the icon Icons.cloud_download_rounded,
|
|
||||||
/// its color set to Constants.highlightColor, and its size set to 200.
|
|
||||||
///
|
|
||||||
/// Returns:
|
|
||||||
/// The widget tree for the TransferScreen.
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Scaffold(
|
|
||||||
// Set the background color of the Scaffold widget.
|
|
||||||
backgroundColor: Constants.backColor,
|
|
||||||
body: Center(
|
|
||||||
// The body of the Scaffold widget.
|
|
||||||
child: Column(
|
|
||||||
// The Column widget has its mainAxisAlignment set to
|
|
||||||
// MainAxisAlignment.center.
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
// A Text widget displaying the transferName.
|
|
||||||
Text(
|
|
||||||
widget.transferName,
|
|
||||||
style: const TextStyle(
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 24,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// A Text widget with the text "Transfer in Progress".
|
|
||||||
Text("Transfer in Progress"),
|
|
||||||
// A SizedBox widget with a height of 32.
|
|
||||||
const SizedBox(height: 32),
|
|
||||||
// A Center widget containing an Icon widget.
|
|
||||||
const Center(
|
|
||||||
child: Icon(
|
|
||||||
Icons.cloud_download_rounded,
|
|
||||||
color: Constants.highlightColor,
|
|
||||||
size: 200,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,135 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the callStartReceiver method from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>callStartReceiver method - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">callStartReceiver method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">callStartReceiver</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">callStartReceiver</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">callStartReceiver</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="callStartReceiver-param-appOrigin"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">appOrigin</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Calls the start transfer function with the given <code>appOrigin</code>.</p>
|
|
||||||
<p>It calls the _startTransfer function with the <code>appOrigin</code> parameter.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> callStartReceiver(String appOrigin) async {
|
|
||||||
_startTransfer(appOrigin);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">callStartReceiver method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,164 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the initState method from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>initState method - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">initState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">initState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">initState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype">void</span>
|
|
||||||
<span class="name ">initState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Called when this object is inserted into the tree.</p>
|
|
||||||
<p>The framework will call this method exactly once for each <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object
|
|
||||||
it creates.</p>
|
|
||||||
<p>Override this method to perform initialization that depends on the
|
|
||||||
location at which this object was inserted into the tree (i.e., <a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a>)
|
|
||||||
or on the widget used to configure this object (i.e., <a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a>).</p>
|
|
||||||
<p>If a <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a>'s <a href="../../pages_transfer_screen/TransferScreenState/build.html">build</a> method depends on an object that can itself
|
|
||||||
change state, for example a <a href="https://api.flutter.dev/flutter/foundation/ChangeNotifier-class.html">ChangeNotifier</a> or <a href="https://api.flutter.dev/flutter/dart-async/Stream-class.html">Stream</a>, or some
|
|
||||||
other object to which one can subscribe to receive notifications, then
|
|
||||||
be sure to subscribe and unsubscribe properly in <a href="../../pages_transfer_screen/TransferScreenState/initState.html">initState</a>,
|
|
||||||
<a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a>, and <a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a>:</p>
|
|
||||||
<ul>
|
|
||||||
<li>In <a href="../../pages_transfer_screen/TransferScreenState/initState.html">initState</a>, subscribe to the object.</li>
|
|
||||||
<li>In <a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a> unsubscribe from the old object and subscribe
|
|
||||||
to the new one if the updated widget configuration requires
|
|
||||||
replacing the object.</li>
|
|
||||||
<li>In <a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a>, unsubscribe from the object.</li>
|
|
||||||
</ul>
|
|
||||||
<p>You should not use <a href="https://api.flutter.dev/flutter/widgets/BuildContext/dependOnInheritedWidgetOfExactType.html">BuildContext.dependOnInheritedWidgetOfExactType</a> from this
|
|
||||||
method. However, <a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a> will be called immediately
|
|
||||||
following this method, and <a href="https://api.flutter.dev/flutter/widgets/BuildContext/dependOnInheritedWidgetOfExactType.html">BuildContext.dependOnInheritedWidgetOfExactType</a> can
|
|
||||||
be used there.</p>
|
|
||||||
<p>Implementations of this method should start with a call to the inherited
|
|
||||||
method, as in <code>super.initState()</code>.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
void initState() {
|
|
||||||
// Call the loadSettings function to load the settings.
|
|
||||||
super.initState();
|
|
||||||
loadSettings().then((_) => callStartReceiver(appOrigin));
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">initState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the inputValue property from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>inputValue property - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">inputValue property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">inputValue</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">inputValue</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">inputValue</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String inputValue = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">inputValue property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,138 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the loadSettings method from the TransferScreenState class, for the Dart programming language.">
|
|
||||||
<title>loadSettings method - TransferScreenState class - transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">loadSettings</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_transfer_screen/TransferScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">loadSettings</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">loadSettings</span>(<wbr>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Loads the settings from the SharedPreferences.</p>
|
|
||||||
<p>It retrieves the value of 'app_origin' from the SharedPreferences and
|
|
||||||
assigns it to the <a href="../../pages_transfer_screen/TransferScreenState/appOrigin.html">appOrigin</a> variable. If the value is not present, it
|
|
||||||
assigns a default value of 'wss://caesar-transfer-iu.shuttleapp.rs'.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> loadSettings() async {
|
|
||||||
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
||||||
appOrigin = prefs.getString('app_origin') ??
|
|
||||||
'wss://caesar-transfer-iu.shuttleapp.rs';
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/pages_transfer_screen-library.html">transfer_screen</a></li>
|
|
||||||
<li><a href="../../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>TransferScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="pages_transfer_screen/pages_transfer_screen-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,160 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="transfer_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>transfer_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/transfer_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">transfer_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_transfer_screen/pages_transfer_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/transfer_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="TransferScreen">
|
|
||||||
<span class="name "><a href="../pages_transfer_screen/TransferScreen-class.html">TransferScreen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Represents the screen for transferring files.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="TransferScreenState">
|
|
||||||
<span class="name "><a href="../pages_transfer_screen/TransferScreenState-class.html">TransferScreenState</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/transfer_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>transfer_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_waiting_screen/WaitingScreen-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreen/WaitingScreen.html">WaitingScreen</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_waiting_screen/WaitingScreen-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreen/files.html">files</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreen/transferName.html">transferName</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_waiting_screen/WaitingScreen-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreen/createState.html">createState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_waiting_screen/WaitingScreen-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,393 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the WaitingScreen class from the waiting_screen library, for the Dart programming language.">
|
|
||||||
<title>WaitingScreen class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreen class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">WaitingScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/pages_waiting_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_waiting_screen/WaitingScreen-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">WaitingScreen</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Represents the screen for displaying the waiting state.</p>
|
|
||||||
<p>This is a <a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a> that displays a screen for the waiting state.
|
|
||||||
It takes in two parameters:</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="../pages_waiting_screen/WaitingScreen/transferName.html">transferName</a>: The name of the transfer.</li>
|
|
||||||
<li><a href="../pages_waiting_screen/WaitingScreen/files.html">files</a>: The list of files being transferred.</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree-class.html">DiagnosticableTree</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget-class.html">StatefulWidget</a></li>
|
|
||||||
<li>WaitingScreen</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="WaitingScreen" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreen/WaitingScreen.html">WaitingScreen</a></span><span class="signature">(<span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span><span class="parameter" id="-param-transferName"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">transferName</span>, </span><span class="parameter" id="-param-files"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://pub.dev/documentation/cross_file/0.3.4+1/cross_file/XFile-class.html">XFile</a></span>></span></span> <span class="parameter-name">files</span>}</span>)</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates a new instance of the <a href="../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a> widget.
|
|
||||||
<div class="constructor-modifier features">const</div>
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="files" class="property">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreen/files.html">files</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://pub.dev/documentation/cross_file/0.3.4+1/cross_file/XFile-class.html">XFile</a></span>></span></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="key" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/key.html">key</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Controls how one widget replaces another widget in the tree.
|
|
||||||
<div class="features"><span class="feature">final</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="transferName" class="property">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreen/transferName.html">transferName</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="createElement" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createElement.html">createElement</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Creates a <a href="https://api.flutter.dev/flutter/widgets/StatefulElement-class.html">StatefulElement</a> to manage this widget's location in the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="createState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreen/createState.html">createState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Creates the mutable state for this widget at a given location in the tree.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugDescribeChildren" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/debugDescribeChildren.html">debugDescribeChildren</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a list of <code>DiagnosticsNode</code> objects describing this node's
|
|
||||||
children.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringDeep" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringDeep.html">toStringDeep</a></span><span class="signature">(<wbr><span class="parameter" id="toStringDeep-param-prefixLineOne">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">prefixLineOne</span> = <span class="default-value">''</span>, </span><span class="parameter" id="toStringDeep-param-prefixOtherLines"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">prefixOtherLines</span>, </span><span class="parameter" id="toStringDeep-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a string representation of this node and its descendants.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShallow" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticableTree/toStringShallow.html">toStringShallow</a></span><span class="signature">(<wbr><span class="parameter" id="toStringShallow-param-joiner">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">joiner</span> = <span class="default-value">', '</span>, </span><span class="parameter" id="toStringShallow-param-minLevel"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.debug</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a one-line detailed description of the object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A short, textual description of this widget.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/Widget/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreen class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>waiting_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,134 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the WaitingScreen constructor from Class WaitingScreen from the waiting_screen library, for the Dart programming language.">
|
|
||||||
<title>WaitingScreen constructor - WaitingScreen - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">WaitingScreen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">WaitingScreen</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
const
|
|
||||||
<span class="name ">WaitingScreen</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="-param-key">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/Key-class.html">Key</a>?</span> <span class="parameter-name">key</span>, </span></li>
|
|
||||||
<li><span class="parameter" id="-param-transferName"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">transferName</span>, </span></li>
|
|
||||||
<li><span class="parameter" id="-param-files"><span>required</span> <span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://pub.dev/documentation/cross_file/0.3.4+1/cross_file/XFile-class.html">XFile</a></span>></span></span> <span class="parameter-name">files</span>}</span></li>
|
|
||||||
</ol>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates a new instance of the <a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a> widget.</p>
|
|
||||||
<p>The <a href="../../pages_waiting_screen/WaitingScreen/transferName.html">transferName</a> parameter is the name of the transfer.
|
|
||||||
The <a href="../../pages_waiting_screen/WaitingScreen/files.html">files</a> parameter is the list of files being transferred.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">const WaitingScreen(
|
|
||||||
{Key? key, required this.transferName, required this.files})
|
|
||||||
: super(key: key);</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreen const constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,141 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the createState method from the WaitingScreen class, for the Dart programming language.">
|
|
||||||
<title>createState method - WaitingScreen class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">createState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">createState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></span>
|
|
||||||
<span class="name ">createState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Creates the mutable state for this widget at a given location in the tree.</p>
|
|
||||||
<p>See also:</p>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/StatefulWidget/createState.html">StatefulWidget.createState</a></li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
WaitingScreenState createState() => WaitingScreenState();</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">createState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the files property from the WaitingScreen class, for the Dart programming language.">
|
|
||||||
<title>files property - WaitingScreen class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">files property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">files</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">files</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/List-class.html">List</a><span class="signature"><<wbr><span class="type-parameter"><a href="https://pub.dev/documentation/cross_file/0.3.4+1/cross_file/XFile-class.html">XFile</a></span>></span>
|
|
||||||
<span class="name ">files</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final List<XFile> files;</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">files property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the transferName property from the WaitingScreen class, for the Dart programming language.">
|
|
||||||
<title>transferName property - WaitingScreen class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">transferName</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreen-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">transferName</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">transferName</span>
|
|
||||||
<div class="features"><span class="feature">final</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">final String transferName;</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li class="self-crumb">transferName property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreen class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
<ol>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_waiting_screen/WaitingScreenState-class.html#constructors">Constructors</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/WaitingScreenState.html">WaitingScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<li class="section-title">
|
|
||||||
<a href="pages_waiting_screen/WaitingScreenState-class.html#instance-properties">Properties</a>
|
|
||||||
</li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/appOrigin.html">appOrigin</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></li>
|
|
||||||
|
|
||||||
<li class="section-title"><a href="pages_waiting_screen/WaitingScreenState-class.html#instance-methods">Methods</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/build.html">build</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/callStartSender.html">callStartSender</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/initState.html">initState</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState/loadSettings.html">loadSettings</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></li>
|
|
||||||
|
|
||||||
<li class="section-title inherited"><a href="pages_waiting_screen/WaitingScreenState-class.html#operators">Operators</a></li>
|
|
||||||
<li class="inherited"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,473 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the WaitingScreenState class from the waiting_screen library, for the Dart programming language.">
|
|
||||||
<title>WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">WaitingScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/pages_waiting_screen-library-sidebar.html"
|
|
||||||
data-below-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-class">WaitingScreenState</span> class
|
|
||||||
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<dl class="dl-horizontal">
|
|
||||||
|
|
||||||
<dt>Inheritance</dt>
|
|
||||||
<dd>
|
|
||||||
<ul class="gt-separated dark clazz-relationships">
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></li>
|
|
||||||
<li><a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a><span class="signature"><<wbr><span class="type-parameter"><a href="../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></span>></span></li>
|
|
||||||
<li>WaitingScreenState</li>
|
|
||||||
</ul>
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="constructors">
|
|
||||||
<h2>Constructors</h2>
|
|
||||||
|
|
||||||
<dl class="constructor-summary-list">
|
|
||||||
<dt id="WaitingScreenState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/WaitingScreenState.html">WaitingScreenState</a></span><span class="signature">()</span>
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-properties">
|
|
||||||
<h2>Properties</h2>
|
|
||||||
<dl class="properties">
|
|
||||||
<dt id="appOrigin" class="property">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/appOrigin.html">appOrigin</a></span>
|
|
||||||
<span class="signature">↔ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="context" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/context.html">context</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The location in the tree where this widget builds.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="hashCode" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/int-class.html">int</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The hash code for this object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="mounted" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/mounted.html">mounted</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Whether this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object is currently in a tree.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="runtimeType" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a></span>
|
|
||||||
<span class="signature">→ <a href="https://api.flutter.dev/flutter/dart-core/Type-class.html">Type</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A representation of the runtime type of the object.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="widget" class="property inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/widget.html">widget</a></span>
|
|
||||||
<span class="signature">→ <a href="../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The current configuration.
|
|
||||||
<div class="features"><span class="feature">no setter</span><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor"
|
|
||||||
id="instance-methods">
|
|
||||||
<h2>Methods</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="activate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/activate.html">activate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is reinserted into the tree after having been
|
|
||||||
removed via <a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="build" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/build.html">build</a></span><span class="signature">(<wbr><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Builds the waiting screen widget.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="callStartSender" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/callStartSender.html">callStartSender</a></span><span class="signature">(<wbr><span class="parameter" id="callStartSender-param-appOrigin"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">appOrigin</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Calls the start sender function.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="deactivate" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/deactivate.html">deactivate</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="debugFillProperties" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/debugFillProperties.html">debugFillProperties</a></span><span class="signature">(<wbr><span class="parameter" id="debugFillProperties-param-properties"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticPropertiesBuilder-class.html">DiagnosticPropertiesBuilder</a></span> <span class="parameter-name">properties</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Add additional properties associated with the node.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didChangeDependencies" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didChangeDependencies.html">didChangeDependencies</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when a dependency of this <a href="https://api.flutter.dev/flutter/widgets/State-class.html">State</a> object changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="didUpdateWidget" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/didUpdateWidget.html">didUpdateWidget</a></span><span class="signature">(<wbr><span class="parameter" id="didUpdateWidget-param-oldWidget"><span>covariant</span> <span class="type-annotation"><a href="../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></span> <span class="parameter-name">oldWidget</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the widget configuration changes.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="dispose" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/dispose.html">dispose</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called when this object is removed from the tree permanently.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="initState" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/initState.html">initState</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Initializes the state of the widget.
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="loadSettings" class="callable">
|
|
||||||
<span class="name"><a href="../pages_waiting_screen/WaitingScreenState/loadSettings.html">loadSettings</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Loads the settings.
|
|
||||||
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="noSuchMethod" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/noSuchMethod.html">noSuchMethod</a></span><span class="signature">(<wbr><span class="parameter" id="noSuchMethod-param-invocation"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Invocation-class.html">Invocation</a></span> <span class="parameter-name">invocation</span></span>)
|
|
||||||
<span class="returntype parameter">→ dynamic</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Invoked when a nonexistent method or property is accessed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="reassemble" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/reassemble.html">reassemble</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Called whenever the application is reassembled during debugging, for
|
|
||||||
example during hot reload.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="setState" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/widgets/State/setState.html">setState</a></span><span class="signature">(<wbr><span class="parameter" id="setState-param-fn"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-ui/VoidCallback.html">VoidCallback</a></span> <span class="parameter-name">fn</span></span>)
|
|
||||||
<span class="returntype parameter">→ void</span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Notify the framework that the internal state of this object has changed.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toDiagnosticsNode" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toDiagnosticsNode.html">toDiagnosticsNode</a></span><span class="signature">(<wbr><span class="parameter" id="toDiagnosticsNode-param-name">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>?</span> <span class="parameter-name">name</span>, </span><span class="parameter" id="toDiagnosticsNode-param-style"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticsTreeStyle.html">DiagnosticsTreeStyle</a>?</span> <span class="parameter-name">style</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode-class.html">DiagnosticsNode</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
Returns a debug representation of the object that is used by debugging
|
|
||||||
tools and by <a href="https://api.flutter.dev/flutter/foundation/DiagnosticsNode/toStringDeep.html">DiagnosticsNode.toStringDeep</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toString" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toString.html">toString</a></span><span class="signature">(<wbr><span class="parameter" id="toString-param-minLevel">{<span class="type-annotation"><a href="https://api.flutter.dev/flutter/foundation/DiagnosticLevel.html">DiagnosticLevel</a></span> <span class="parameter-name">minLevel</span> = <span class="default-value">DiagnosticLevel.info</span>}</span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A string representation of this object.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="toStringShort" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/foundation/Diagnosticable/toStringShort.html">toStringShort</a></span><span class="signature">(<wbr>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
A brief description of this object, usually just the <a href="https://api.flutter.dev/flutter/dart-core/Object/runtimeType.html">runtimeType</a> and the
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/Object/hashCode.html">hashCode</a>.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section
|
|
||||||
class="summary offset-anchor inherited"
|
|
||||||
id="operators">
|
|
||||||
<h2>Operators</h2>
|
|
||||||
<dl class="callables">
|
|
||||||
<dt id="operator ==" class="callable inherited">
|
|
||||||
<span class="name"><a href="https://api.flutter.dev/flutter/dart-core/Object/operator_equals.html">operator ==</a></span><span class="signature">(<wbr><span class="parameter" id="==-param-other"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/Object-class.html">Object</a></span> <span class="parameter-name">other</span></span>)
|
|
||||||
<span class="returntype parameter">→ <a href="https://api.flutter.dev/flutter/dart-core/bool-class.html">bool</a></span>
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd class="inherited">
|
|
||||||
The equality operator.
|
|
||||||
<div class="features"><span class="feature">inherited</span></div>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreenState class</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>waiting_screen library</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,120 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the WaitingScreenState constructor from Class WaitingScreenState from the waiting_screen library, for the Dart programming language.">
|
|
||||||
<title>WaitingScreenState constructor - WaitingScreenState - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">WaitingScreenState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-constructor">WaitingScreenState</span> constructor
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<span class="name ">WaitingScreenState</span>(<wbr>)
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">WaitingScreenState constructor</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-left-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,125 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the appOrigin property from the WaitingScreenState class, for the Dart programming language.">
|
|
||||||
<title>appOrigin property - WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">appOrigin</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-property">appOrigin</span> property
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a>
|
|
||||||
<span class="name ">appOrigin</span>
|
|
||||||
<div class="features"><span class="feature">getter/setter pair</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">String appOrigin = '';</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">appOrigin property</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,175 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the build method from the WaitingScreenState class, for the Dart programming language.">
|
|
||||||
<title>build method - WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">build</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">build</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/widgets/Widget-class.html">Widget</a></span>
|
|
||||||
<span class="name ">build</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="build-param-context"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/widgets/BuildContext-class.html">BuildContext</a></span> <span class="parameter-name">context</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Builds the waiting screen widget.</p>
|
|
||||||
<p>This widget displays the transfer name and a QR code representing the
|
|
||||||
transfer name.</p>
|
|
||||||
<p>Returns:
|
|
||||||
A <a href="https://api.flutter.dev/flutter/material/Scaffold-class.html">Scaffold</a> widget containing the waiting screen UI.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Scaffold(
|
|
||||||
// Set the background color of the scaffold.
|
|
||||||
backgroundColor: Constants.backColor,
|
|
||||||
// Center the content of the scaffold.
|
|
||||||
body: Center(
|
|
||||||
child: Column(
|
|
||||||
// Align the children of the column in the center.
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
// Display the transfer name.
|
|
||||||
Text(
|
|
||||||
widget.transferName,
|
|
||||||
// Set the text style for the transfer name.
|
|
||||||
style: const TextStyle(color: Colors.white, fontSize: 24),
|
|
||||||
),
|
|
||||||
// Add spacing between the transfer name and the QR code.
|
|
||||||
const SizedBox(height: 32),
|
|
||||||
// Display a QR code representing the transfer name.
|
|
||||||
QrImageView(
|
|
||||||
// Set the data to be encoded in the QR code.
|
|
||||||
data: widget.transferName,
|
|
||||||
// Set the version of the QR code.
|
|
||||||
version: QrVersions.auto,
|
|
||||||
// Set the size of the QR code.
|
|
||||||
size: 200,
|
|
||||||
// Set the foreground color of the QR code.
|
|
||||||
foregroundColor: Constants.highlightColor,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">build method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,140 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the callStartSender method from the WaitingScreenState class, for the Dart programming language.">
|
|
||||||
<title>callStartSender method - WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">callStartSender method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">callStartSender</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">callStartSender</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">callStartSender</span>(<wbr><ol class="parameter-list"><li><span class="parameter" id="callStartSender-param-appOrigin"><span class="type-annotation"><a href="https://api.flutter.dev/flutter/dart-core/String-class.html">String</a></span> <span class="parameter-name">appOrigin</span></span></li>
|
|
||||||
</ol>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Calls the start sender function.</p>
|
|
||||||
<p>This function calls the <code>_startTransfer</code> function with the provided
|
|
||||||
<code>appOrigin</code>.</p>
|
|
||||||
<p>Parameters:</p>
|
|
||||||
<ul>
|
|
||||||
<li>appOrigin: The origin of the app.</li>
|
|
||||||
</ul>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> callStartSender(String appOrigin) async {
|
|
||||||
_startTransfer(appOrigin);
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">callStartSender method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,143 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the initState method from the WaitingScreenState class, for the Dart programming language.">
|
|
||||||
<title>initState method - WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">initState method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">initState</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">initState</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<ol class="annotation-list">
|
|
||||||
<li>@<a href="https://api.flutter.dev/flutter/dart-core/override-constant.html">override</a></li>
|
|
||||||
</ol>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<span class="returntype">void</span>
|
|
||||||
<span class="name ">initState</span>(<wbr>)
|
|
||||||
|
|
||||||
<div class="features"><span class="feature">override</span></div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Initializes the state of the widget.</p>
|
|
||||||
<p>This function is called when the widget is first created.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
|
|
||||||
// Load the settings and then start the transfer.
|
|
||||||
loadSettings().then((_) => callStartSender(appOrigin));
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">initState method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,143 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="API docs for the loadSettings method from the WaitingScreenState class, for the Dart programming language.">
|
|
||||||
<title>loadSettings method - WaitingScreenState class - waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen.dart</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">loadSettings</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar="pages_waiting_screen/WaitingScreenState-class-sidebar.html"
|
|
||||||
data-below-sidebar="">
|
|
||||||
<div>
|
|
||||||
<h1><span class="kind-method">loadSettings</span> method
|
|
||||||
</h1></div>
|
|
||||||
|
|
||||||
<section class="multi-line-signature">
|
|
||||||
|
|
||||||
|
|
||||||
<span class="returntype"><a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a><span class="signature"><<wbr><span class="type-parameter">void</span>></span></span>
|
|
||||||
<span class="name ">loadSettings</span>(<wbr>)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="desc markdown">
|
|
||||||
<p>Loads the settings.</p>
|
|
||||||
<p>This function loads the settings from the shared preferences.
|
|
||||||
It retrieves the app origin from the shared preferences and assigns it to
|
|
||||||
the <a href="../../pages_waiting_screen/WaitingScreenState/appOrigin.html">appOrigin</a> variable.</p>
|
|
||||||
<p>Returns a <a href="https://api.flutter.dev/flutter/dart-async/Future-class.html">Future</a> that completes when the settings are loaded.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary source-code" id="source">
|
|
||||||
<h2><span>Implementation</span></h2>
|
|
||||||
<pre class="language-dart"><code class="language-dart">Future<void> loadSettings() async {
|
|
||||||
// Get the shared preferences instance.
|
|
||||||
SharedPreferences prefs = await SharedPreferences.getInstance();
|
|
||||||
|
|
||||||
// Get the app origin from the shared preferences.
|
|
||||||
// If the app origin is not found, use the default value.
|
|
||||||
appOrigin = prefs.getString('app_origin') ??
|
|
||||||
'wss://caesar-transfer-iu.shuttleapp.rs';
|
|
||||||
}</code></pre>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../../index.html">flutter_test_gui</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/pages_waiting_screen-library.html">waiting_screen</a></li>
|
|
||||||
<li><a href="../../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
<li class="self-crumb">loadSettings method</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5>WaitingScreenState class</h5>
|
|
||||||
<div id="dartdoc-sidebar-left-content"></div>
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div><!--/.sidebar-offcanvas-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
<ol>
|
|
||||||
<li class="section-title"><a href="pages_waiting_screen/pages_waiting_screen-library.html#classes">Classes</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></li>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ol>
|
|
||||||
|
|
@ -1,160 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="waiting_screen library API docs, for the Dart programming language.">
|
|
||||||
<title>waiting_screen library - Dart API</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="../static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="../static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="../" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/waiting_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">waiting_screen</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div
|
|
||||||
id="dartdoc-main-content"
|
|
||||||
class="main-content"
|
|
||||||
data-above-sidebar=""
|
|
||||||
data-below-sidebar="pages_waiting_screen/pages_waiting_screen-library-sidebar.html">
|
|
||||||
|
|
||||||
<div>
|
|
||||||
|
|
||||||
|
|
||||||
<h1>
|
|
||||||
<span class="kind-library">pages/waiting_screen</span>
|
|
||||||
library
|
|
||||||
|
|
||||||
|
|
||||||
</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="summary offset-anchor" id="classes">
|
|
||||||
<h2>Classes</h2>
|
|
||||||
|
|
||||||
<dl>
|
|
||||||
<dt id="WaitingScreen">
|
|
||||||
<span class="name "><a href="../pages_waiting_screen/WaitingScreen-class.html">WaitingScreen</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
Represents the screen for displaying the waiting state.
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
<dt id="WaitingScreenState">
|
|
||||||
<span class="name "><a href="../pages_waiting_screen/WaitingScreenState-class.html">WaitingScreenState</a></span>
|
|
||||||
|
|
||||||
</dt>
|
|
||||||
<dd>
|
|
||||||
|
|
||||||
</dd>
|
|
||||||
|
|
||||||
</dl>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /.main-content -->
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="../index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">pages/waiting_screen.dart</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="../consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="../main/main-library.html">main</a></li>
|
|
||||||
<li><a href="../pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="../pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="../pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="../pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="../pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="../pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
<h5>waiting_screen library</h5>
|
|
||||||
</div><!--/sidebar-offcanvas-right-->
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="../static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="../static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
|
|
@ -1,108 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, user-scalable=no">
|
|
||||||
<meta name="description" content="flutter_test_gui API docs, for the Dart programming language.">
|
|
||||||
<title>flutter_test_gui - Dart API docs</title>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
|
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" rel="stylesheet">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="static-assets/github.css?v1">
|
|
||||||
<link rel="stylesheet" href="static-assets/styles.css?v1">
|
|
||||||
<link rel="icon" href="static-assets/favicon.png?v1">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
|
|
||||||
<body data-base-href="./" data-using-base-href="false" class="light-theme">
|
|
||||||
|
|
||||||
<div id="overlay-under-drawer"></div>
|
|
||||||
|
|
||||||
<header id="title">
|
|
||||||
<span id="sidenav-left-toggle" class="material-symbols-outlined" role="button" tabindex="0">menu</span>
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-xs">
|
|
||||||
<li><a href="index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">Search</li>
|
|
||||||
</ol>
|
|
||||||
<div class="self-name">flutter_test_gui</div>
|
|
||||||
<form class="search navbar-right" role="search">
|
|
||||||
<input type="text" id="search-box" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
<div class="toggle" id="theme-button" title="Toggle brightness">
|
|
||||||
<label for="theme">
|
|
||||||
<input type="checkbox" id="theme" value="light-theme">
|
|
||||||
<span id="dark-theme-button" class="material-symbols-outlined">
|
|
||||||
dark_mode
|
|
||||||
</span>
|
|
||||||
<span id="light-theme-button" class="material-symbols-outlined">
|
|
||||||
light_mode
|
|
||||||
</span>
|
|
||||||
</label>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<main>
|
|
||||||
|
|
||||||
<div id="dartdoc-main-content" class="main-content">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-left" class="sidebar sidebar-offcanvas-left">
|
|
||||||
<!-- The search input and breadcrumbs below are only responsively visible at low resolutions. -->
|
|
||||||
<header id="header-search-sidebar" class="hidden-l">
|
|
||||||
<form class="search-sidebar" role="search">
|
|
||||||
<input type="text" id="search-sidebar" autocomplete="off" disabled class="form-control typeahead" placeholder="Loading search...">
|
|
||||||
</form>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<ol class="breadcrumbs gt-separated dark hidden-l" id="sidebar-nav">
|
|
||||||
<li><a href="index.html">flutter_test_gui</a></li>
|
|
||||||
<li class="self-crumb">Search</li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
|
|
||||||
<h5 class="hidden-xs"><span class="package-name">flutter_test_gui</span> <span class="package-kind">package</span></h5>
|
|
||||||
<ol>
|
|
||||||
<li class="section-title">Libraries</li>
|
|
||||||
<li><a href="consts_consts/consts_consts-library.html">consts/consts</a></li>
|
|
||||||
<li><a href="main/main-library.html">main</a></li>
|
|
||||||
<li><a href="pages_receive_screen/pages_receive_screen-library.html">pages/receive_screen</a></li>
|
|
||||||
<li><a href="pages_send_screen/pages_send_screen-library.html">pages/send_screen</a></li>
|
|
||||||
<li><a href="pages_settings_screen/pages_settings_screen-library.html">pages/settings_screen</a></li>
|
|
||||||
<li><a href="pages_succes_screen/pages_succes_screen-library.html">pages/succes_screen</a></li>
|
|
||||||
<li><a href="pages_transfer_screen/pages_transfer_screen-library.html">pages/transfer_screen</a></li>
|
|
||||||
<li><a href="pages_waiting_screen/pages_waiting_screen-library.html">pages/waiting_screen</a></li>
|
|
||||||
</ol>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="dartdoc-sidebar-right" class="sidebar sidebar-offcanvas-right">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<span class="no-break">
|
|
||||||
flutter_test_gui
|
|
||||||
1.0.0+1
|
|
||||||
</span>
|
|
||||||
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="static-assets/highlight.pack.js?v1"></script>
|
|
||||||
<script src="static-assets/docs.dart.js"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because one or more lines are too long
Binary file not shown.
|
Before Width: | Height: | Size: 1.7 KiB |
|
|
@ -1,99 +0,0 @@
|
||||||
/*
|
|
||||||
|
|
||||||
github.com style (c) Vasily Polovnyov <vast@whiteants.net>
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
.hljs {
|
|
||||||
display: block;
|
|
||||||
overflow-x: auto;
|
|
||||||
padding: 0.5em;
|
|
||||||
color: #333;
|
|
||||||
background: #f8f8f8;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-comment,
|
|
||||||
.hljs-quote {
|
|
||||||
color: #998;
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-keyword,
|
|
||||||
.hljs-selector-tag,
|
|
||||||
.hljs-subst {
|
|
||||||
color: #333;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-number,
|
|
||||||
.hljs-literal,
|
|
||||||
.hljs-variable,
|
|
||||||
.hljs-template-variable,
|
|
||||||
.hljs-tag .hljs-attr {
|
|
||||||
color: #008080;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-string,
|
|
||||||
.hljs-doctag {
|
|
||||||
color: #d14;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-title,
|
|
||||||
.hljs-section,
|
|
||||||
.hljs-selector-id {
|
|
||||||
color: #900;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-subst {
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-type,
|
|
||||||
.hljs-class .hljs-title {
|
|
||||||
color: #458;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-tag,
|
|
||||||
.hljs-name,
|
|
||||||
.hljs-attribute {
|
|
||||||
color: #000080;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-regexp,
|
|
||||||
.hljs-link {
|
|
||||||
color: #009926;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-symbol,
|
|
||||||
.hljs-bullet {
|
|
||||||
color: #990073;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-built_in,
|
|
||||||
.hljs-builtin-name {
|
|
||||||
color: #0086b3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-meta {
|
|
||||||
color: #999;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-deletion {
|
|
||||||
background: #fdd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-addition {
|
|
||||||
background: #dfd;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-emphasis {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hljs-strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue