Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Last active October 20, 2024 02:26
Show Gist options
  • Save gyugyu90/7940329cb6abfcd48d0665ceb16f54ae to your computer and use it in GitHub Desktop.
Save gyugyu90/7940329cb6abfcd48d0665ceb16f54ae to your computer and use it in GitHub Desktop.
abstract class Feed {
void onClick();
}
class PostFeed extends Feed {
@override
void onClick() {
print('show tags');
}
}
class ReelsFeed extends Feed {
@override
void onClick() {
print('show reels in full screen mode');
}
}
class AdFeed extends Feed {
@override
void onClick() {
print('learn more about the ad');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment