File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 242
242
}
243
243
},
244
244
"inputs": "Inputs",
245
- "scroll": "Scroll"
245
+ "scroll": "Scroll",
246
+ "sensitivity": "Sensitivity",
247
+ "sensitivityHint": "The higher the value, the more sensitive the input"
246
248
}
Original file line number Diff line number Diff line change @@ -31,6 +31,21 @@ class InputsSettingsPage extends StatelessWidget {
31
31
child: Column (
32
32
crossAxisAlignment: CrossAxisAlignment .stretch,
33
33
children: [
34
+ Padding (
35
+ padding: settingsCardTitlePadding,
36
+ child: Column (
37
+ spacing: 8 ,
38
+ crossAxisAlignment: CrossAxisAlignment .start,
39
+ children: [
40
+ Text (
41
+ AppLocalizations .of (context).sensitivity,
42
+ style: TextTheme .of (context).headlineSmall,
43
+ ),
44
+ Text (AppLocalizations .of (context)
45
+ .sensitivityHint),
46
+ ],
47
+ ),
48
+ ),
34
49
ExactSlider (
35
50
min: 10 ,
36
51
max: 1000 ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import manifest from "./webmanifest.json";
8
8
9
9
// https://astro.build/config
10
10
export default defineConfig ( {
11
- site : "https://butterfly.linwood.dev " ,
11
+ site : "https://setonix.world " ,
12
12
markdown : {
13
13
remarkPlugins : [ remarkHeadingID , remarkGemoji ] ,
14
14
} ,
You can’t perform that action at this time.
0 commit comments