Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created October 20, 2024 02:51
Show Gist options
  • Save gyugyu90/e0b26bcebfeadd4ed2b76012fbd9df40 to your computer and use it in GitHub Desktop.
Save gyugyu90/e0b26bcebfeadd4ed2b76012fbd9df40 to your computer and use it in GitHub Desktop.
abstract class Feed {
void onClick();
}
class PostFeed implements Feed {
@override
void onClick() {
print('show tags');
}
}
class ReelsFeed implements Feed {
@override
void onClick() {
print('show reels in full screen mode');
}
}
class AdFeed implements 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