cookie_consent

Creator: coderz1093

Last updated:

0 purchases

cookie_consent Image
cookie_consent Images

Languages

Categories

Add to Cart

Description:

cookie consent

Display a cookie consent banner in your Flutter app or website.
Features #

Show consent banner in a few different styles
Let user customize their accepted categories

Getting started #
TODO: List prerequisites and provide or point to information on how to
start using the package.
Usage #
The minimum required input is a BuildContext and a cookie policy url:
showCookieConsent(
context,
cookiePolicyUrl: Uri.parse('https://example.com/cookies'),
);
copied to clipboard
There are several layouts to choose from



CookieConsentLayout




cupertinoBottomSheet


cupertinoAlert


floatingBottomSheet


cupertinoAlert


materialAlert


materialBottomSheet


materialSnackBar



showCookieConsent(
context,
layout: CookieConsentLayout.materialSnackBar,
cookiePolicyUrl: Uri.parse('https://example.com/cookies'),
);
copied to clipboard
We recommend that you provide your own consent text and categories,
tailored to your app:
showCookieConsent(
context,
cookiePolicyUrl: Uri.parse('https://example.com/cookies'),
consent: 'By clicking [acceptallcookies], you agree that we can store cookies '
'on your device and disclose information in accordance with our [cookiepolicy].',
categories: [
CookeConsentCategory(
id: 'necessary',
name: 'Strictly Necessary Cookies',
description:
'Necessary cookies are required to enable the basic features of this site, '
'such as providing secure log-in or adjusting your consent preferences. '
'These cookies do not store any personally identifiable data.',
),
CookeConsentCategory(
id: 'advertising',
name: 'Advertising Cookies',
description:
'Advertising cookies are used to provide visitors with customized '
'advertisements based on the pages you visited previously and to analyze '
'the effectiveness of the ad campaigns.',
),
],
);
copied to clipboard
See example/ for a working app with demos of all layouts

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.