Small bug fix with individual code

This commit is contained in:
2026-01-02 11:24:55 -06:00
parent 4af40a66f5
commit 729ac236ca
3 changed files with 15 additions and 6 deletions

View File

@@ -73,6 +73,12 @@
ReferencedContainer = "container:Runner.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<CommandLineArguments>
<CommandLineArgument
argument = "--vm-service-host=0.0.0.0"
isEnabled = "YES">
</CommandLineArgument>
</CommandLineArguments>
</LaunchAction>
<ProfileAction
buildConfiguration = "Profile"

View File

@@ -85,7 +85,7 @@ class _DayTimePickerState extends State<DayTimePicker> {
Widget build(BuildContext context) {
return AlertDialog(
title: Text(
'New Schedule',
(widget.isEditing) ? 'Edit Schedule' : 'New Schedule',
style: GoogleFonts.aBeeZee(),
),
content: Column(

View File

@@ -168,6 +168,8 @@ class _PeripheralScreenState extends State<PeripheralScreen> {
calibrated = true;
calibrationStage = 0;
});
// Fetch updated peripheral data after calibration completes
fetchState();
}
}
});
@@ -198,6 +200,7 @@ class _PeripheralScreenState extends State<PeripheralScreen> {
if (response == null) throw Exception("auth error");
if (response.statusCode != 202) throw Exception("Server Error");
calibrated = false;
} catch (e) {
if (!mounted) return;
ScaffoldMessenger.of(context).showSnackBar(errorSnackbar(e));
@@ -287,7 +290,7 @@ class _PeripheralScreenState extends State<PeripheralScreen> {
}
}
Future loop() async{
Future fetchState() async{
try {
final payload = {
'periphId': widget.peripheralId
@@ -341,7 +344,7 @@ class _PeripheralScreenState extends State<PeripheralScreen> {
Future initAll() async{
getName();
checkDeviceConnection();
loop();
fetchState();
}
void rename() {
@@ -734,9 +737,9 @@ class _PeripheralScreenState extends State<PeripheralScreen> {
FloatingActionButton(
heroTag: "recalibrate",
tooltip: "Recalibrate Peripheral",
onPressed: deviceConnected ? recalibrate : null,
foregroundColor: deviceConnected ? Theme.of(context).highlightColor : Colors.grey.shade400,
backgroundColor: deviceConnected ? Theme.of(context).primaryColorDark : Colors.grey.shade300,
onPressed: (deviceConnected && calibrated) ? recalibrate : null,
foregroundColor: (deviceConnected && calibrated) ? Theme.of(context).highlightColor : Colors.grey.shade400,
backgroundColor: (deviceConnected && calibrated) ? Theme.of(context).primaryColorDark : Colors.grey.shade300,
child: Icon(Icons.swap_vert),
),
],