flutter local notifications “onDidReceiveNotificationResponse” is not triggering

When i tap on notificatio and app is in foreground state, then “onDidReceiveNotificationResponse” does not trigger. why ? I have added print statement inside the method and it’s not working. I am getting notifications both in terminated and foreground state. Only issue is that I can not detect the notification tap in the case of foreground.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:flutter_timezone/flutter_timezone.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:sos_cameroon/app/common/shared_preference_manager.dart';
import 'package:sos_cameroon/src/features/notifications/data/repositories/local_notification_service.dart';
import 'package:timezone/data/latest_all.dart' as tz;
import 'package:timezone/timezone.dart' as tz;
import '../../models/schedule_notification_model.dart';
@pragma('vm:entry-point')
void notificationTapBackground(NotificationResponse notificationResponse) {
// ignore: avoid_print
print('notification(${notificationResponse.id}) action tapped: '
'${notificationResponse.actionId} with'
' payload: ${notificationResponse.payload}');
if (notificationResponse.input?.isNotEmpty ?? false) {
// ignore: avoid_print
print(
'notification action tapped with input: ${notificationResponse.input}');
}
}
class FlutterLocalNotification implements LocalNotificationService {
final SharedPreferences _sharedPreferences =
SharedPreferencesManager.instance;
final StreamController<String?> _selectNotificationStream =
StreamController<String?>.broadcast();
final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
FlutterLocalNotificationsPlugin();
final AndroidNotificationDetails _channel = const AndroidNotificationDetails(
'default_notification_channel_id', // id
'High Importance Notifications', // title
// description
importance: Importance.high,
enableLights: true,
actions: <AndroidNotificationAction>[
AndroidNotificationAction('1', '', showsUserInterface: true),
],
playSound: true);
@override
Future<void> initialize() async {
await _configureLocalTimeZone();
await _configureNotifications();
}
Future<bool> _isAlreadyScheduled() async {
return _sharedPreferences.getBool("local_notification_schedule") ?? false;
}
Future<bool> _localNotificationScheduled() async {
return _sharedPreferences.setBool("local_notification_schedule", true);
}
Future<void> _configureNotifications() async {
const AndroidInitializationSettings initializationSettingsAndroid =
AndroidInitializationSettings('@mipmap/ic_launcher');
final DarwinInitializationSettings initializationSettingsDarwin =
DarwinInitializationSettings(
requestAlertPermission: true,
requestBadgePermission: true,
requestSoundPermission: true,
onDidReceiveLocalNotification:
(int id, String? title, String? body, String? payload) async {},
);
final InitializationSettings initializationSettings =
InitializationSettings(
android: initializationSettingsAndroid,
iOS: initializationSettingsDarwin,
macOS: initializationSettingsDarwin,
);
await flutterLocalNotificationsPlugin.initialize(
initializationSettings,
onDidReceiveNotificationResponse:
(NotificationResponse notificationResponse) {
debugPrint("NOTIFICATION TAPPED ++++");
switch (notificationResponse.notificationResponseType) {
case NotificationResponseType.selectedNotification:
debugPrint("NOTIFICATION TAPPED: ${notificationResponse.payload}");
break;
case NotificationResponseType.selectedNotificationAction:
if (notificationResponse.actionId == "1") {
debugPrint(
"NOTIFICATION TAPPED ++ SELECTED NOTIFICATION TAPPED: ${notificationResponse.payload}");
}
break;
}
},
onDidReceiveBackgroundNotificationResponse: notificationTapBackground,
);
}
// on tap on any notification
static void onNotificationTap(NotificationResponse notificationResponse) {
// _selectNotificationStream.add(notificationResponse.payload!);
debugPrint("NOTIFICATION IS TAPPED +++++++++++");
}
@override
Future<String?> notificationPayloadFromWhichAppOpened() async {
final NotificationAppLaunchDetails? notificationAppLaunchDetails =
!kIsWeb && Platform.isLinux
? null
: await flutterLocalNotificationsPlugin
.getNotificationAppLaunchDetails();
if (notificationAppLaunchDetails?.didNotificationLaunchApp ?? false) {
String? selectedNotificationPayload =
notificationAppLaunchDetails!.notificationResponse?.payload;
return selectedNotificationPayload;
}
return null;
}
@override
Future<void> requestPermissions() async {
await _requestPermissions();
}
@override
Future<void> scheduleNotification(
{required int id,
required String title,
required String description,
String? payload,
required Duration durationFromCurrentTime}) async {
debugPrint(
"NOTIFICATION SCHEDULED AT+++++++ $durationFromCurrentTime ++++ ${tz.TZDateTime.now(tz.local).add(durationFromCurrentTime)}");
await flutterLocalNotificationsPlugin.zonedSchedule(
id,
title,
description,
payload: payload,
tz.TZDateTime.now(tz.local).add(durationFromCurrentTime),
NotificationDetails(android: _channel),
androidScheduleMode: AndroidScheduleMode.exactAllowWhileIdle,
uiLocalNotificationDateInterpretation:
UILocalNotificationDateInterpretation.absoluteTime);
}
Future<void> _configureLocalTimeZone() async {
if (kIsWeb || Platform.isLinux) {
return;
}
tz.initializeTimeZones();
final String timeZoneName = await FlutterTimezone.getLocalTimezone();
tz.setLocalLocation(tz.getLocation(timeZoneName));
}
Future<void> _requestPermissions() async {
if (Platform.isIOS || Platform.isMacOS) {
await flutterLocalNotificationsPlugin
.resolvePlatformSpecificImplementation<
IOSFlutterLocalNotificationsPlugin>()
?.requestPermissions(
alert: true,
badge: true,
sound: true,
);
await flutterLocalNotificationsPlugin
.resolvePlatformSpecificImplementation<
MacOSFlutterLocalNotificationsPlugin>()
?.requestPermissions(
alert: true,
badge: true,
sound: true,
);
} else if (Platform.isAndroid) {
final AndroidFlutterLocalNotificationsPlugin? androidImplementation =
flutterLocalNotificationsPlugin.resolvePlatformSpecificImplementation<
AndroidFlutterLocalNotificationsPlugin>();
final bool? grantedNotificationPermission =
await androidImplementation?.requestNotificationsPermission();
// If the app requires scheduling notifications with exact timings
await AndroidFlutterLocalNotificationsPlugin()
.requestExactAlarmsPermission();
}
}
@override
Future<void> scheduleAllNotificationsFromJson() async {
// 1. FIRST CHECK IF NOTIFICATION ALREADY SCHEDULES OR NOT
// if(await _isAlreadyScheduled()){
// debugPrint("NOTIFICATIONS ARE ALREADY SCHEDULED ++++++");
// return;
// }
List<ScheduleNotificationModel> scheduleNotifications =
await _loadNotifications();
for (int index = 0; index < scheduleNotifications.length; index++) {
ScheduleNotificationModel notification = scheduleNotifications[index];
LocaleData localeData = notification.locales!['en']!;
scheduleNotification(
id: index,
title: localeData.title ?? "N/A",
description: localeData.description ?? "N/A",
payload: json.encode(notification.toJson()),
durationFromCurrentTime: Duration(
days: ((notification.day ?? 1) - 1),
hours: notification.hour ?? 0,
minutes: notification.minute ?? 0,
seconds: notification.second ?? 0,
),
);
}
_localNotificationScheduled();
}
/// Read json according to current locale
Future<List<ScheduleNotificationModel>> _loadNotifications() async {
// final currentLocale = Localizations.localeOf(context);
// debugPrint("CURRENT LOCALE : ${currentLocale.languageCode}");
final jsonString =
await rootBundle.loadString('assets/local_notifications/mock.json');
final jsonData = json.decode(jsonString) as List<dynamic>;
return jsonData
.map((json) => ScheduleNotificationModel.fromJson(json))
.toList();
}
@override
Stream<String?> selectNotificationStream() {
return _selectNotificationStream.stream;
}
}
</code>
<code>import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; import 'package:flutter_timezone/flutter_timezone.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:sos_cameroon/app/common/shared_preference_manager.dart'; import 'package:sos_cameroon/src/features/notifications/data/repositories/local_notification_service.dart'; import 'package:timezone/data/latest_all.dart' as tz; import 'package:timezone/timezone.dart' as tz; import '../../models/schedule_notification_model.dart'; @pragma('vm:entry-point') void notificationTapBackground(NotificationResponse notificationResponse) { // ignore: avoid_print print('notification(${notificationResponse.id}) action tapped: ' '${notificationResponse.actionId} with' ' payload: ${notificationResponse.payload}'); if (notificationResponse.input?.isNotEmpty ?? false) { // ignore: avoid_print print( 'notification action tapped with input: ${notificationResponse.input}'); } } class FlutterLocalNotification implements LocalNotificationService { final SharedPreferences _sharedPreferences = SharedPreferencesManager.instance; final StreamController<String?> _selectNotificationStream = StreamController<String?>.broadcast(); final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin(); final AndroidNotificationDetails _channel = const AndroidNotificationDetails( 'default_notification_channel_id', // id 'High Importance Notifications', // title // description importance: Importance.high, enableLights: true, actions: <AndroidNotificationAction>[ AndroidNotificationAction('1', '', showsUserInterface: true), ], playSound: true); @override Future<void> initialize() async { await _configureLocalTimeZone(); await _configureNotifications(); } Future<bool> _isAlreadyScheduled() async { return _sharedPreferences.getBool("local_notification_schedule") ?? false; } Future<bool> _localNotificationScheduled() async { return _sharedPreferences.setBool("local_notification_schedule", true); } Future<void> _configureNotifications() async { const AndroidInitializationSettings initializationSettingsAndroid = AndroidInitializationSettings('@mipmap/ic_launcher'); final DarwinInitializationSettings initializationSettingsDarwin = DarwinInitializationSettings( requestAlertPermission: true, requestBadgePermission: true, requestSoundPermission: true, onDidReceiveLocalNotification: (int id, String? title, String? body, String? payload) async {}, ); final InitializationSettings initializationSettings = InitializationSettings( android: initializationSettingsAndroid, iOS: initializationSettingsDarwin, macOS: initializationSettingsDarwin, ); await flutterLocalNotificationsPlugin.initialize( initializationSettings, onDidReceiveNotificationResponse: (NotificationResponse notificationResponse) { debugPrint("NOTIFICATION TAPPED ++++"); switch (notificationResponse.notificationResponseType) { case NotificationResponseType.selectedNotification: debugPrint("NOTIFICATION TAPPED: ${notificationResponse.payload}"); break; case NotificationResponseType.selectedNotificationAction: if (notificationResponse.actionId == "1") { debugPrint( "NOTIFICATION TAPPED ++ SELECTED NOTIFICATION TAPPED: ${notificationResponse.payload}"); } break; } }, onDidReceiveBackgroundNotificationResponse: notificationTapBackground, ); } // on tap on any notification static void onNotificationTap(NotificationResponse notificationResponse) { // _selectNotificationStream.add(notificationResponse.payload!); debugPrint("NOTIFICATION IS TAPPED +++++++++++"); } @override Future<String?> notificationPayloadFromWhichAppOpened() async { final NotificationAppLaunchDetails? notificationAppLaunchDetails = !kIsWeb && Platform.isLinux ? null : await flutterLocalNotificationsPlugin .getNotificationAppLaunchDetails(); if (notificationAppLaunchDetails?.didNotificationLaunchApp ?? false) { String? selectedNotificationPayload = notificationAppLaunchDetails!.notificationResponse?.payload; return selectedNotificationPayload; } return null; } @override Future<void> requestPermissions() async { await _requestPermissions(); } @override Future<void> scheduleNotification( {required int id, required String title, required String description, String? payload, required Duration durationFromCurrentTime}) async { debugPrint( "NOTIFICATION SCHEDULED AT+++++++ $durationFromCurrentTime ++++ ${tz.TZDateTime.now(tz.local).add(durationFromCurrentTime)}"); await flutterLocalNotificationsPlugin.zonedSchedule( id, title, description, payload: payload, tz.TZDateTime.now(tz.local).add(durationFromCurrentTime), NotificationDetails(android: _channel), androidScheduleMode: AndroidScheduleMode.exactAllowWhileIdle, uiLocalNotificationDateInterpretation: UILocalNotificationDateInterpretation.absoluteTime); } Future<void> _configureLocalTimeZone() async { if (kIsWeb || Platform.isLinux) { return; } tz.initializeTimeZones(); final String timeZoneName = await FlutterTimezone.getLocalTimezone(); tz.setLocalLocation(tz.getLocation(timeZoneName)); } Future<void> _requestPermissions() async { if (Platform.isIOS || Platform.isMacOS) { await flutterLocalNotificationsPlugin .resolvePlatformSpecificImplementation< IOSFlutterLocalNotificationsPlugin>() ?.requestPermissions( alert: true, badge: true, sound: true, ); await flutterLocalNotificationsPlugin .resolvePlatformSpecificImplementation< MacOSFlutterLocalNotificationsPlugin>() ?.requestPermissions( alert: true, badge: true, sound: true, ); } else if (Platform.isAndroid) { final AndroidFlutterLocalNotificationsPlugin? androidImplementation = flutterLocalNotificationsPlugin.resolvePlatformSpecificImplementation< AndroidFlutterLocalNotificationsPlugin>(); final bool? grantedNotificationPermission = await androidImplementation?.requestNotificationsPermission(); // If the app requires scheduling notifications with exact timings await AndroidFlutterLocalNotificationsPlugin() .requestExactAlarmsPermission(); } } @override Future<void> scheduleAllNotificationsFromJson() async { // 1. FIRST CHECK IF NOTIFICATION ALREADY SCHEDULES OR NOT // if(await _isAlreadyScheduled()){ // debugPrint("NOTIFICATIONS ARE ALREADY SCHEDULED ++++++"); // return; // } List<ScheduleNotificationModel> scheduleNotifications = await _loadNotifications(); for (int index = 0; index < scheduleNotifications.length; index++) { ScheduleNotificationModel notification = scheduleNotifications[index]; LocaleData localeData = notification.locales!['en']!; scheduleNotification( id: index, title: localeData.title ?? "N/A", description: localeData.description ?? "N/A", payload: json.encode(notification.toJson()), durationFromCurrentTime: Duration( days: ((notification.day ?? 1) - 1), hours: notification.hour ?? 0, minutes: notification.minute ?? 0, seconds: notification.second ?? 0, ), ); } _localNotificationScheduled(); } /// Read json according to current locale Future<List<ScheduleNotificationModel>> _loadNotifications() async { // final currentLocale = Localizations.localeOf(context); // debugPrint("CURRENT LOCALE : ${currentLocale.languageCode}"); final jsonString = await rootBundle.loadString('assets/local_notifications/mock.json'); final jsonData = json.decode(jsonString) as List<dynamic>; return jsonData .map((json) => ScheduleNotificationModel.fromJson(json)) .toList(); } @override Stream<String?> selectNotificationStream() { return _selectNotificationStream.stream; } } </code>
import 'dart:async';
import 'dart:convert';
import 'dart:io';

import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
import 'package:flutter_timezone/flutter_timezone.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:sos_cameroon/app/common/shared_preference_manager.dart';

import 'package:sos_cameroon/src/features/notifications/data/repositories/local_notification_service.dart';
import 'package:timezone/data/latest_all.dart' as tz;
import 'package:timezone/timezone.dart' as tz;

import '../../models/schedule_notification_model.dart';

@pragma('vm:entry-point')
void notificationTapBackground(NotificationResponse notificationResponse) {
  // ignore: avoid_print
  print('notification(${notificationResponse.id}) action tapped: '
      '${notificationResponse.actionId} with'
      ' payload: ${notificationResponse.payload}');
  if (notificationResponse.input?.isNotEmpty ?? false) {
    // ignore: avoid_print
    print(
        'notification action tapped with input: ${notificationResponse.input}');
  }
}

class FlutterLocalNotification implements LocalNotificationService {
  final SharedPreferences _sharedPreferences =
      SharedPreferencesManager.instance;
  final StreamController<String?> _selectNotificationStream =
      StreamController<String?>.broadcast();

  final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
      FlutterLocalNotificationsPlugin();

  final AndroidNotificationDetails _channel = const AndroidNotificationDetails(
      'default_notification_channel_id', // id
      'High Importance Notifications', // title
      // description
      importance: Importance.high,
      enableLights: true,
      actions: <AndroidNotificationAction>[
        AndroidNotificationAction('1', '', showsUserInterface: true),
      ],
      playSound: true);

  @override
  Future<void> initialize() async {
    await _configureLocalTimeZone();
    await _configureNotifications();
  }

  Future<bool> _isAlreadyScheduled() async {
    return _sharedPreferences.getBool("local_notification_schedule") ?? false;
  }

  Future<bool> _localNotificationScheduled() async {
    return _sharedPreferences.setBool("local_notification_schedule", true);
  }

  Future<void> _configureNotifications() async {
    const AndroidInitializationSettings initializationSettingsAndroid =
        AndroidInitializationSettings('@mipmap/ic_launcher');
    final DarwinInitializationSettings initializationSettingsDarwin =
        DarwinInitializationSettings(
      requestAlertPermission: true,
      requestBadgePermission: true,
      requestSoundPermission: true,
      onDidReceiveLocalNotification:
          (int id, String? title, String? body, String? payload) async {},
    );
    final InitializationSettings initializationSettings =
        InitializationSettings(
      android: initializationSettingsAndroid,
      iOS: initializationSettingsDarwin,
      macOS: initializationSettingsDarwin,
    );

    await flutterLocalNotificationsPlugin.initialize(
      initializationSettings,
      onDidReceiveNotificationResponse:
          (NotificationResponse notificationResponse) {
        debugPrint("NOTIFICATION TAPPED ++++");
        switch (notificationResponse.notificationResponseType) {
          case NotificationResponseType.selectedNotification:
            debugPrint("NOTIFICATION TAPPED: ${notificationResponse.payload}");
            break;
          case NotificationResponseType.selectedNotificationAction:
            if (notificationResponse.actionId == "1") {
              debugPrint(
                  "NOTIFICATION TAPPED ++ SELECTED NOTIFICATION TAPPED: ${notificationResponse.payload}");
            }
            break;
        }
      },
      onDidReceiveBackgroundNotificationResponse: notificationTapBackground,
    );
  }

// on tap on any notification
  static void onNotificationTap(NotificationResponse notificationResponse) {
    // _selectNotificationStream.add(notificationResponse.payload!);
    debugPrint("NOTIFICATION IS TAPPED +++++++++++");
  }

  @override
  Future<String?> notificationPayloadFromWhichAppOpened() async {
    final NotificationAppLaunchDetails? notificationAppLaunchDetails =
        !kIsWeb && Platform.isLinux
            ? null
            : await flutterLocalNotificationsPlugin
                .getNotificationAppLaunchDetails();
    if (notificationAppLaunchDetails?.didNotificationLaunchApp ?? false) {
      String? selectedNotificationPayload =
          notificationAppLaunchDetails!.notificationResponse?.payload;
      return selectedNotificationPayload;
    }
    return null;
  }

  @override
  Future<void> requestPermissions() async {
    await _requestPermissions();
  }

  @override
  Future<void> scheduleNotification(
      {required int id,
      required String title,
      required String description,
      String? payload,
      required Duration durationFromCurrentTime}) async {
    debugPrint(
        "NOTIFICATION SCHEDULED AT+++++++ $durationFromCurrentTime ++++ ${tz.TZDateTime.now(tz.local).add(durationFromCurrentTime)}");
    await flutterLocalNotificationsPlugin.zonedSchedule(
        id,
        title,
        description,
        payload: payload,
        tz.TZDateTime.now(tz.local).add(durationFromCurrentTime),
        NotificationDetails(android: _channel),
        androidScheduleMode: AndroidScheduleMode.exactAllowWhileIdle,
        uiLocalNotificationDateInterpretation:
            UILocalNotificationDateInterpretation.absoluteTime);
  }

  Future<void> _configureLocalTimeZone() async {
    if (kIsWeb || Platform.isLinux) {
      return;
    }
    tz.initializeTimeZones();
    final String timeZoneName = await FlutterTimezone.getLocalTimezone();
    tz.setLocalLocation(tz.getLocation(timeZoneName));
  }

  Future<void> _requestPermissions() async {
    if (Platform.isIOS || Platform.isMacOS) {
      await flutterLocalNotificationsPlugin
          .resolvePlatformSpecificImplementation<
              IOSFlutterLocalNotificationsPlugin>()
          ?.requestPermissions(
            alert: true,
            badge: true,
            sound: true,
          );
      await flutterLocalNotificationsPlugin
          .resolvePlatformSpecificImplementation<
              MacOSFlutterLocalNotificationsPlugin>()
          ?.requestPermissions(
            alert: true,
            badge: true,
            sound: true,
          );
    } else if (Platform.isAndroid) {
      final AndroidFlutterLocalNotificationsPlugin? androidImplementation =
          flutterLocalNotificationsPlugin.resolvePlatformSpecificImplementation<
              AndroidFlutterLocalNotificationsPlugin>();
      final bool? grantedNotificationPermission =
          await androidImplementation?.requestNotificationsPermission();
      // If the app requires scheduling notifications with exact timings
      await AndroidFlutterLocalNotificationsPlugin()
          .requestExactAlarmsPermission();
    }
  }

  @override
  Future<void> scheduleAllNotificationsFromJson() async {
    // 1. FIRST CHECK IF NOTIFICATION ALREADY SCHEDULES OR NOT

    // if(await _isAlreadyScheduled()){
    //   debugPrint("NOTIFICATIONS ARE ALREADY SCHEDULED ++++++");
    //   return;
    // }

    List<ScheduleNotificationModel> scheduleNotifications =
        await _loadNotifications();
    for (int index = 0; index < scheduleNotifications.length; index++) {
      ScheduleNotificationModel notification = scheduleNotifications[index];
      LocaleData localeData = notification.locales!['en']!;
      scheduleNotification(
        id: index,
        title: localeData.title ?? "N/A",
        description: localeData.description ?? "N/A",
        payload: json.encode(notification.toJson()),
        durationFromCurrentTime: Duration(
          days: ((notification.day ?? 1) - 1),
          hours: notification.hour ?? 0,
          minutes: notification.minute ?? 0,
          seconds: notification.second ?? 0,
        ),
      );
    }
    _localNotificationScheduled();
  }

  /// Read json according to current locale
  Future<List<ScheduleNotificationModel>> _loadNotifications() async {
    // final  currentLocale = Localizations.localeOf(context);
    // debugPrint("CURRENT LOCALE : ${currentLocale.languageCode}");
    final jsonString =
        await rootBundle.loadString('assets/local_notifications/mock.json');
    final jsonData = json.decode(jsonString) as List<dynamic>;
    return jsonData
        .map((json) => ScheduleNotificationModel.fromJson(json))
        .toList();
  }

  @override
  Stream<String?> selectNotificationStream() {
    return _selectNotificationStream.stream;
  }
}

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật