replaces words with emoji
This commit is contained in:
+2
-2
@@ -116,12 +116,12 @@ class _MainPageState extends State<MainPage> {
|
|||||||
children: [
|
children: [
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
onPressed: _audio.isPlaying ? null : _play,
|
onPressed: _audio.isPlaying ? null : _play,
|
||||||
child: const Text('Play'),
|
child: const Text('▶️'),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 12),
|
const SizedBox(width: 12),
|
||||||
ElevatedButton(
|
ElevatedButton(
|
||||||
onPressed: _audio.isPlaying ? _stop : null,
|
onPressed: _audio.isPlaying ? _stop : null,
|
||||||
child: const Text('Stop'),
|
child: const Text('⏹️'),
|
||||||
),
|
),
|
||||||
const SizedBox(width: 16),
|
const SizedBox(width: 16),
|
||||||
Text(
|
Text(
|
||||||
|
|||||||
Reference in New Issue
Block a user