Skip to content

Commit 51eecbc

Browse files
Initial commit.
Add entire project to Git.
0 parents  commit 51eecbc

File tree

239 files changed

+21355
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+21355
-0
lines changed

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.build/
9+
.buildlog/
10+
.history
11+
.svn/
12+
.swiftpm/
13+
migrate_working_dir/
14+
15+
# IntelliJ related
16+
*.iml
17+
*.ipr
18+
*.iws
19+
.idea/
20+
21+
# The .vscode folder contains launch configuration and tasks you configure in
22+
# VS Code which you may wish to be included in version control, so this line
23+
# is commented out by default.
24+
#.vscode/
25+
26+
# Flutter/Dart/Pub related
27+
**/doc/api/
28+
**/ios/Flutter/.last_build_id
29+
.dart_tool/
30+
.flutter-plugins
31+
.flutter-plugins-dependencies
32+
.pub-cache/
33+
.pub/
34+
/build/
35+
36+
# Symbolication related
37+
app.*.symbols
38+
39+
# Obfuscation related
40+
app.*.map.json
41+
42+
# Android Studio will place build artifacts here
43+
/android/app/debug
44+
/android/app/profile
45+
/android/app/release
46+
47+
# Rust related
48+
/.cargo/
49+
/target/
50+
51+
# Generated signals
52+
/lib/src/bincode
53+
/lib/src/serde
54+
/lib/src/bindings

.metadata

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: "fcf2c11572af6f390246c056bc905eca609533a0"
8+
channel: "stable"
9+
10+
project_type: app
11+
12+
# Tracks metadata for the flutter migrate command
13+
migration:
14+
platforms:
15+
- platform: root
16+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
17+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
18+
- platform: android
19+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
20+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
21+
- platform: ios
22+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
23+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
24+
- platform: linux
25+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
26+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
27+
- platform: macos
28+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
29+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
30+
- platform: web
31+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
32+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
33+
- platform: windows
34+
create_revision: fcf2c11572af6f390246c056bc905eca609533a0
35+
base_revision: fcf2c11572af6f390246c056bc905eca609533a0
36+
37+
# User provided section
38+
39+
# List of Local paths (relative to this file) that should be
40+
# ignored by the migrate tool.
41+
#
42+
# Files that are not part of the templates will be ignored by default.
43+
unmanaged_files:
44+
- 'lib/main.dart'
45+
- 'ios/Runner.xcodeproj/project.pbxproj'

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rust-analyzer.linkedProjects": [
3+
"./rust/Cargo.toml"
4+
]
5+
}

README.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# pcb_fault_detection_ui
2+
3+
A new Flutter project.
4+
5+
## Getting Started
6+
7+
This project is a starting point for a Flutter application.
8+
9+
A few resources to get you started if this is your first Flutter project:
10+
11+
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
12+
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
13+
14+
For help getting started with Flutter development, view the
15+
[online documentation](https://docs.flutter.dev/), which offers tutorials,
16+
samples, guidance on mobile development, and a full API reference.
17+
18+
## Using Rust Inside Flutter
19+
20+
This project leverages Flutter for GUI and Rust for the backend logic,
21+
utilizing the capabilities of the
22+
[Rinf](https://pub.dev/packages/rinf) framework.
23+
24+
To run and build this app, you need to have
25+
[Flutter SDK](https://docs.flutter.dev/get-started/install)
26+
and [Rust toolchain](https://www.rust-lang.org/tools/install)
27+
installed on your system.
28+
You can check that your system is ready with the commands below.
29+
Note that all the Flutter subcomponents should be installed.
30+
31+
```shell
32+
rustc --version
33+
flutter doctor
34+
```
35+
36+
You also need to have the CLI tool for Rinf ready.
37+
38+
```shell
39+
cargo install rinf_cli
40+
```
41+
42+
Signals sent between Dart and Rust are implemented using signal attributes.
43+
If you've modified the signal structs, run the following command
44+
to generate the corresponding Dart classes:
45+
46+
```shell
47+
rinf gen
48+
```
49+
50+
Now you can run and build this app just like any other Flutter projects.
51+
52+
```shell
53+
flutter run
54+
```
55+
56+
For detailed instructions on writing Rust and Flutter together,
57+
please refer to Rinf's [documentation](https://rinf.cunarist.com).

analysis_options.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
analyzer:
11+
errors:
12+
constant_identifier_names: ignore
13+
include: package:flutter_lints/flutter.yaml
14+
15+
linter:
16+
# The lint rules applied to this project can be customized in the
17+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
18+
# included above or to enable additional rules. A list of all available lints
19+
# and their documentation is published at https://dart.dev/lints.
20+
#
21+
# Instead of disabling a lint rule for the entire project in the
22+
# section below, it can also be suppressed for a single line of code
23+
# or a specific dart file by using the `// ignore: name_of_lint` and
24+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
25+
# producing the lint.
26+
rules:
27+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
28+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
29+
30+
# Additional information about this file can be found at
31+
# https://dart.dev/guides/language/analysis-options

android/.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
gradle-wrapper.jar
2+
/.gradle
3+
/captures/
4+
/gradlew
5+
/gradlew.bat
6+
/local.properties
7+
GeneratedPluginRegistrant.java
8+
.cxx/
9+
10+
# Remember to never publicly share your keystore.
11+
# See https://flutter.dev/to/reference-keystore
12+
key.properties
13+
**/*.keystore
14+
**/*.jks

android/app/build.gradle.kts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
plugins {
2+
id("com.android.application")
3+
id("kotlin-android")
4+
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+
id("dev.flutter.flutter-gradle-plugin")
6+
}
7+
8+
android {
9+
namespace = "com.example.pcb_fault_detection_ui"
10+
compileSdk = flutter.compileSdkVersion
11+
ndkVersion = flutter.ndkVersion
12+
13+
compileOptions {
14+
sourceCompatibility = JavaVersion.VERSION_11
15+
targetCompatibility = JavaVersion.VERSION_11
16+
}
17+
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_11.toString()
20+
}
21+
22+
defaultConfig {
23+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+
applicationId = "com.example.pcb_fault_detection_ui"
25+
// You can update the following values to match your application needs.
26+
// For more information, see: https://flutter.dev/to/review-gradle-config.
27+
minSdk = flutter.minSdkVersion
28+
targetSdk = flutter.targetSdkVersion
29+
versionCode = flutter.versionCode
30+
versionName = flutter.versionName
31+
}
32+
33+
buildTypes {
34+
release {
35+
// TODO: Add your own signing config for the release build.
36+
// Signing with the debug keys for now, so `flutter run --release` works.
37+
signingConfig = signingConfigs.getByName("debug")
38+
}
39+
}
40+
}
41+
42+
flutter {
43+
source = "../.."
44+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<!-- The INTERNET permission is required for development. Specifically,
3+
the Flutter tool needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<application
3+
android:label="pcb_fault_detection_ui"
4+
android:name="${applicationName}"
5+
android:icon="@mipmap/ic_launcher">
6+
<activity
7+
android:name=".MainActivity"
8+
android:exported="true"
9+
android:launchMode="singleTop"
10+
android:taskAffinity=""
11+
android:theme="@style/LaunchTheme"
12+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
13+
android:hardwareAccelerated="true"
14+
android:windowSoftInputMode="adjustResize">
15+
<!-- Specifies an Android theme to apply to this Activity as soon as
16+
the Android process has started. This theme is visible to the user
17+
while the Flutter UI initializes. After that, this theme continues
18+
to determine the Window background behind the Flutter UI. -->
19+
<meta-data
20+
android:name="io.flutter.embedding.android.NormalTheme"
21+
android:resource="@style/NormalTheme"
22+
/>
23+
<intent-filter>
24+
<action android:name="android.intent.action.MAIN"/>
25+
<category android:name="android.intent.category.LAUNCHER"/>
26+
</intent-filter>
27+
</activity>
28+
<!-- Don't delete the meta-data below.
29+
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
30+
<meta-data
31+
android:name="flutterEmbedding"
32+
android:value="2" />
33+
</application>
34+
<!-- Required to query activities that can process text, see:
35+
https://developer.android.com/training/package-visibility and
36+
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
37+
38+
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
39+
<queries>
40+
<intent>
41+
<action android:name="android.intent.action.PROCESS_TEXT"/>
42+
<data android:mimeType="text/plain"/>
43+
</intent>
44+
</queries>
45+
</manifest>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package com.example.pcb_fault_detection_ui
2+
3+
import io.flutter.embedding.android.FlutterActivity
4+
5+
class MainActivity : FlutterActivity()

0 commit comments

Comments
 (0)