buildIntellectualPropertyArticle method
Implementation
Widget buildIntellectualPropertyArticle(String appName) {
return FastArticle(
titleText: 'Intellectual Property',
children: [
FastParagraph(
text: '$appName is protected by the laws of France and '
'international intellectual property laws and you agree to '
'abide by them. We grant you the right to use it.',
),
FastParagraph(
text: 'However, without our prior written consent, you may not '
'download, copy or store $appName content in any form '
'outside of $appName and you may not modify, publish, '
'transmit, participate in the transfer or sale of, '
'reproduce, create derivative works based on, distribute, or '
'perform any $appName content.',
),
],
);
}