diff --git a/lib/custom_painters/language_icon.dart b/lib/custom_painters/language_icon.dart index 70e158046..54cd9ab73 100644 --- a/lib/custom_painters/language_icon.dart +++ b/lib/custom_painters/language_icon.dart @@ -1,9 +1,7 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; ///This class draws the language icon using custom paint. +/// ///CustomPaint is a widget from the Flutter SDK, which enables /// you to use a canvas to draw different shapes. class LanguageIcon extends CustomPainter { diff --git a/lib/custom_painters/talawa_logo.dart b/lib/custom_painters/talawa_logo.dart index 4cd054739..4ecfa4307 100644 --- a/lib/custom_painters/talawa_logo.dart +++ b/lib/custom_painters/talawa_logo.dart @@ -1,9 +1,7 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; ///This class draws the app logo using custom paint. +/// ///CustomPaint is a widget from the Flutter SDK, which enables /// you to use a canvas to draw different shapes. class AppLogo extends CustomPainter { diff --git a/lib/custom_painters/telegram_logo.dart b/lib/custom_painters/telegram_logo.dart index a1242a3a3..fbde2d7c7 100644 --- a/lib/custom_painters/telegram_logo.dart +++ b/lib/custom_painters/telegram_logo.dart @@ -1,11 +1,9 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'dart:ui' as ui; import 'package:flutter/material.dart'; ///This class draws the telegram logo using custom paint. +/// ///CustomPaint is a widget from the Flutter SDK, which enables /// you to use a canvas to draw different shapes. diff --git a/lib/custom_painters/whatsapp_logo.dart b/lib/custom_painters/whatsapp_logo.dart index 302176b37..de20a141d 100644 --- a/lib/custom_painters/whatsapp_logo.dart +++ b/lib/custom_painters/whatsapp_logo.dart @@ -1,9 +1,7 @@ -// ignore_for_file: talawa_api_doc -// ignore_for_file: talawa_good_doc_comments - import 'package:flutter/material.dart'; ///This class draws the whatsapp logo using custom paint. +/// ///CustomPaint is a widget from the Flutter SDK, which enables /// you to use a canvas to draw different shapes. class WhatsappLogo extends CustomPainter {