-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzebra printer code.txt
More file actions
174 lines (149 loc) · 4.52 KB
/
zebra printer code.txt
File metadata and controls
174 lines (149 loc) · 4.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:zebrautility/ZebraPrinter.dart';
import 'package:zebrautility/Zebrautility.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Zebra Printer App',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Zebra Printer'),
debugShowCheckedModeBanner: false,
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
late ZebraPrinter zebraPrinter;
List<DiscoveredPrinter> discoveredPrinters = [];
bool discoveryInProgress = false;
@override
void initState() {
super.initState();
// Initialize the ZebraPrinter instance using Zebrautility
Zebrautility.getPrinterInstance(
onPrinterFound: onPrinterFound,
onPrinterDiscoveryDone: onPrinterDiscoveryDone,
onDiscoveryError: onDiscoveryError,
onChangePrinterStatus: onChangePrinterStatus,
onPermissionDenied: onPermissionDenied,
).then((printer) {
setState(() {
zebraPrinter = printer;
});
});
}
// Implement your callback functions as needed
void onPrinterFound(String name, String ipAddress, bool isWifi) {
setState(() {
// Create a DiscoveredPrinter object to hold the printer information
final discoveredPrinter = DiscoveredPrinter(
name: name,
ipAddress: ipAddress,
isWifi: isWifi,
);
// Add the discovered printer to the list
discoveredPrinters.add(discoveredPrinter);
});
}
void onPrinterDiscoveryDone() {
setState(() {
discoveryInProgress = false;
});
}
void onDiscoveryError(int errorCode, String errorText) {
setState(() {
// Update the UI or perform actions based on the error
discoveryInProgress = false; // Assuming you have a boolean flag for discovery status
});
// Display an error message and allow the user to retry discovery
showDialog(
context: context,
builder: (context) => AlertDialog(
title: Text('Discovery Error'),
content: Text(errorText),
actions: [
TextButton(
onPressed: () {
Navigator.of(context).pop(); // Close the dialog
// Retry the printer discovery here if needed
zebraPrinter.discoveryPrinters();
},
child: Text('Retry'),
),
],
),
);
}
void onChangePrinterStatus(String status, String color) {
// Handle printer status change event
}
void onPermissionDenied() {
// Handle permission denied event
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ElevatedButton(
onPressed: () {
// Trigger printer discovery here
setState(() {
discoveryInProgress = true;
});
zebraPrinter.discoveryPrinters();
},
child: Text('Discover Printers'),
),
SizedBox(height: 16),
discoveryInProgress
? CircularProgressIndicator() // Display a loading indicator during discovery
: Expanded(
child: ListView.builder(
itemCount: discoveredPrinters.length,
itemBuilder: (context, index) {
final printer = discoveredPrinters[index];
return ListTile(
title: Text(printer.name),
subtitle: Text(printer.ipAddress),
trailing: Icon(printer.isWifi ? Icons.wifi : Icons.lan),
);
},
),
),
],
),
),
);
}
}
class DiscoveredPrinter {
final String name;
final String ipAddress;
final bool isWifi;
DiscoveredPrinter({
required this.name,
required this.ipAddress,
required this.isWifi,
});
}