I made an app which should produce a click sound when a button is clicked.
I've tried the code bellow and it didn't work.
import 'package:flutter/services.dart';
...
SystemSound.play(SystemSoundType.click);
I expect the app produce sound when a button is clicked, but it didn't. I work on an Android app.