This commit is contained in:
parent
d03884d00e
commit
6b5fef4b93
@ -7,6 +7,7 @@ import 'package:dialer/features/composition/composition.dart';
|
||||
import 'package:flutter_contacts/flutter_contacts.dart';
|
||||
import 'package:dialer/features/settings/settings.dart';
|
||||
import '../../services/contact_service.dart';
|
||||
import 'package:dialer/features/voicemail/voicemail_page.dart';
|
||||
|
||||
const bool _privacyMode = bool.fromEnvironment('privacy-mode', defaultValue: false);
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:audioplayers/audioplayers.dart';
|
||||
// ...existing code...
|
||||
|
||||
class VoicemailPage extends StatefulWidget {
|
||||
const VoicemailPage({Key? key}) : super(key: key);
|
||||
@ -80,8 +79,15 @@ class _VoicemailPageState extends State<VoicemailPage> {
|
||||
Row(
|
||||
children: [
|
||||
const CircleAvatar(
|
||||
backgroundImage: AssetImage(
|
||||
'assets/default_contact_picture.png'),
|
||||
radius: 28,
|
||||
backgroundColor: Colors.amber,
|
||||
child: Text(
|
||||
"JD",
|
||||
style: TextStyle(
|
||||
color: Colors.deepOrange,
|
||||
fontSize: 28,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
Column(
|
||||
@ -168,8 +174,15 @@ class _VoicemailPageState extends State<VoicemailPage> {
|
||||
: Row(
|
||||
children: [
|
||||
const CircleAvatar(
|
||||
backgroundImage:
|
||||
AssetImage('assets/default_contact_picture.png'),
|
||||
radius: 28,
|
||||
backgroundColor: Colors.amber,
|
||||
child: Text(
|
||||
"JD",
|
||||
style: TextStyle(
|
||||
color: Colors.deepOrange,
|
||||
fontSize: 28,
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 12),
|
||||
Column(
|
||||
|
Loading…
Reference in New Issue
Block a user